Django

Code

Changeset 8824

Show
Ignore:
Timestamp:
09/01/08 17:59:43 (4 months ago)
Author:
brosner
Message:

Fixed #2612 -- Fixed admin formatting when help_text is used with multiple fields on the same line.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/admin/templates/admin/includes/fieldset.html

    r8073 r8824  
    66      {{ line.errors }} 
    77      {% for field in line %} 
     8      <div class="float-left"> 
    89          {% if field.is_checkbox %} 
    910              {{ field.field }}{{ field.label_tag }} 
     
    1213          {% endif %} 
    1314          {% if field.field.field.help_text %}<p class="help">{{ field.field.field.help_text|safe }}</p>{% endif %} 
     15      </div> 
    1416      {% endfor %} 
    1517      </div>