Django

Code

Changeset 3037

Show
Ignore:
Timestamp:
05/31/06 22:37:59 (2 years ago)
Author:
adrian
Message:

Negligible spacing change to admin/templates/admin/field_line.html

Files:

Legend:

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

    r2809 r3037  
    33{% for bound_field in bound_fields %}{{ bound_field.html_error_list }}{% endfor %} 
    44{% for bound_field in bound_fields %} 
    5   {% if bound_field.has_label_first %} 
    6     {% field_label bound_field %} 
    7   {% endif %} 
     5  {% if bound_field.has_label_first %}{% field_label bound_field %}{% endif %} 
    86  {% field_widget bound_field %} 
    9   {% if not bound_field.has_label_first %} 
    10     {% field_label bound_field %} 
    11   {% endif %} 
     7  {% if not bound_field.has_label_first %}{% field_label bound_field %}{% endif %} 
    128  {% if bound_field.field.help_text %}<p class="help">{{ bound_field.field.help_text }}</p>{% endif %} 
    139{% endfor %}