summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-06-01 03:37:59 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-06-01 03:37:59 +0000
commit350c36077664154b1a4d86d670b33c72d7591d98 (patch)
tree8f60dedbc4f4beba4a86a2d1d045497e14ecc619
parent50994249756bbb5f91ca1a80e69440bf3a60fcde (diff)
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
-rw-r--r--django/contrib/admin/templates/admin/field_line.html8
1 files changed, 2 insertions, 6 deletions
diff --git a/django/contrib/admin/templates/admin/field_line.html b/django/contrib/admin/templates/admin/field_line.html
index b7e2fc2ae0..680830b506 100644
--- a/django/contrib/admin/templates/admin/field_line.html
+++ b/django/contrib/admin/templates/admin/field_line.html
@@ -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>