I am trying to improve the appearance of the inline editing appearance for a many-to-many field in the Django (1.10) admin .
The parent model contains the link:
class Sample(models.Model):
id = models.AutoField(primary_key=True)
# ...
objectives = models.ManyToManyField(
SampleObjective,
related_name='sample_objectives',
verbose_name=_('required objectives'))
In the admin:
class SampleObjectiveInline(admin.TabularInline):
model = models.Sample.objectives.through
exclude = ('objectives', )
class SampleAdmin(admin.ModelAdmin):
# ...
inlines = (SampleObjectiveInline, )

The image (above) shows that the default text for the section name, as well as the labels, is not very user-friendly. How do I alter/overwrite these?