It seems like to that Django admin allows the display of helptext for a model field, but I can't get it to display.
I have an admin interface that looks like
class ModelA():
name=DecimalField(blehbleh, help_text='some help plz')
desc=DecimalField(blehbleh, help_text='some other help')
class ModelAInlineAdmin(admin.TabularInline):
model = ModelA
formset = ModelAFormSet
class ModelAFormSet(forms.BaseInlineFormSet):
def clean(self):
super(ModelAFormSet, self).clean()
# some validation stuff
class SomeOtherAdmin(admin.ModelAdmin):
inlines = [ModelAInlineAdmin]
model = some_other_model
The ModelA's inline shows up in SomeOtherAdmin
, but I cannot make the help text (i.e. 'some help plz' and 'some other help') to show.