#8190: Utilise help_text for TabularInline in Admin
---------------------------------------+-------------------------------
               Reporter:  glenjamin    |          Owner:  dArignac
                   Type:  New feature  |         Status:  assigned
              Milestone:  1.4          |      Component:  contrib.admin
                Version:  SVN          |       Severity:  Normal
             Resolution:               |       Keywords:
           Triage Stage:  Accepted     |      Has patch:  1
    Needs documentation:  0            |    Needs tests:  1
Patch needs improvement:  0            |  Easy pickings:  0
                  UI/UX:  1            |
---------------------------------------+-------------------------------
Changes (by jedie):

 * cc: django@… (added)


Comment:

 Whats about simply add the help_text to td title ?

 e.g:

 {{{#!patch
 django/contrib/admin/templates/admin/edit_inline/tabular.html
 @@ -42,7 +42,7 @@
 {% for fieldset in inline_admin_form %}
 {% for line in fieldset %}
 {% for field in line %}
 - <td class="{{ field.field.name }}">
 + <td class="{{ field.field.name }}" title="{{ field.field.help_text }}">
 {% if field.is_readonly %}
 <p>{{ field.contents }}</p>
 {% else %}
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/8190#comment:13>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to