theatlantic / django-nested-admin

Django admin classes that allow for nested inlines
http://django-nested-admin.readthedocs.org/
Other
727 stars 101 forks source link

Fixed: Correctly show heading in tabular template #259

Closed drikusroor closed 4 months ago

drikusroor commented 4 months ago

Fixes #261

There seems to be a small markup error in the tabular template: The h2 heading element is closed twice, causing the heading content to be shown outside of the heading element, looking like span-ish text with regards to styling. See also the screenshots below:

Current situation

image

Situation after fix

This PR then removes the first h2 closing tag so that the title will have the correct position and styling.

image
fdintino commented 4 months ago

Thanks!