Ticket #8190: 8190-r16351.diff
File 8190-r16351.diff, 1.4 KB (added by , 13 years ago) |
---|
-
django/contrib/admin/media/css/base.css
303 303 background: white; 304 304 } 305 305 306 th abbr.help-text-tooltip { 307 cursor: help; 308 } 309 306 310 /* SORTABLE TABLES */ 307 311 308 312 thead th a:link, thead th a:visited { -
django/contrib/admin/templates/admin/edit_inline/tabular.html
9 9 <thead><tr> 10 10 {% for field in inline_admin_formset.fields %} 11 11 {% if not field.widget.is_hidden %} 12 <th{% if forloop.first %} colspan="2"{% endif %}{% if field.required %} class="required"{% endif %}>{{ field.label|capfirst }}</th> 12 <th{% if forloop.first %} colspan="2"{% endif %}{% if field.required %} class="required"{% endif %}> 13 {{ field.label|capfirst }} 14 {% if field.help_text %}<abbr class="help-text-tooltip" title="{{ field.help_text|striptags }}">?</abbr>{% endif %} 15 </th> 13 16 {% endif %} 14 17 {% endfor %} 15 18 {% if inline_admin_formset.formset.can_delete %}<th>{% trans "Delete?" %}</th>{% endif %}