From 350c36077664154b1a4d86d670b33c72d7591d98 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 1 Jun 2006 03:37:59 +0000 Subject: [PATCH] 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 --- django/contrib/admin/templates/admin/field_line.html | 8 ++------ 1 file 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 @@
{% 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 %}

{{ bound_field.field.help_text }}

{% endif %} {% endfor %}