Changeset 3037
- Timestamp:
- 05/31/06 22:37:59 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/admin/templates/admin/field_line.html
r2809 r3037 3 3 {% for bound_field in bound_fields %}{{ bound_field.html_error_list }}{% endfor %} 4 4 {% 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 %} 8 6 {% 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 %} 12 8 {% if bound_field.field.help_text %}<p class="help">{{ bound_field.field.help_text }}</p>{% endif %} 13 9 {% endfor %}
