Commit 350c3607 authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

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

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3037 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 50994249
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -2,13 +2,9 @@
<div class="{{ class_names }}" >
{% for bound_field in bound_fields %}{{ bound_field.html_error_list }}{% endfor %}
{% for bound_field in bound_fields %}
  {% if bound_field.has_label_first %}
    {% field_label bound_field %}
  {% endif %}
  {% if bound_field.has_label_first %}{% field_label bound_field %}{% endif %}
  {% field_widget bound_field %}
  {% if not bound_field.has_label_first %}
    {% field_label bound_field %}
  {% endif %}
  {% if not bound_field.has_label_first %}{% field_label bound_field %}{% endif %}
  {% if bound_field.field.help_text %}<p class="help">{{ bound_field.field.help_text }}</p>{% endif %}
{% endfor %}
</div>