diff --git a/django/contrib/admin/templates/admin/edit_inline/tabular.html b/django/contrib/admin/templates/admin/edit_inline/tabular.html
index 16bb14d..04ded04 100644
a
|
b
|
|
8 | 8 | <thead><tr> |
9 | 9 | {% for field in inline_admin_formset.fields %} |
10 | 10 | {% if not field.is_hidden %} |
11 | | <th {% if forloop.first %}colspan="2"{% endif %}>{{ field.label|capfirst|escape }}</th> |
| 11 | <th{% if forloop.first %} colspan="2"{% endif %}{% if field.help_text %} title="{{ field.help_text }}"{% endif %}> |
| 12 | {{ field.label|capfirst|escape }}{% if field.help_text %} [*]{% endif %} |
| 13 | </th> |
12 | 14 | {% endif %} |
13 | 15 | {% endfor %} |
14 | 16 | {% if inline_admin_formset.formset.deletable %}<th>{% trans "Delete" %}?</th>{% endif %} |