From f894371984d89e9c265e3746a890c3914865085b Mon Sep 17 00:00:00 2001 From: Drikus Roor Date: Tue, 23 Jul 2024 16:46:08 +0200 Subject: [PATCH] fix: Correctly show heading in tabular template (#259) --- nested_admin/templates/nesting/admin/inlines/tabular.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nested_admin/templates/nesting/admin/inlines/tabular.html b/nested_admin/templates/nesting/admin/inlines/tabular.html index e34e51e..f16a496 100644 --- a/nested_admin/templates/nesting/admin/inlines/tabular.html +++ b/nested_admin/templates/nesting/admin/inlines/tabular.html @@ -13,7 +13,7 @@
{% if inline_admin_formset.is_collapsible %}
{% endif %} -

+

{% if inline_admin_formset.opts.title %}{{ inline_admin_formset.opts.title }}{% else %}{{ inline_admin_formset.opts.verbose_name_plural|capfirst }}{% endif %}

{% if inline_admin_formset.is_collapsible %}
{% endif %}