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
This commit is contained in:
parent
5099424975
commit
350c360776
|
@ -2,13 +2,9 @@
|
||||||
<div class="{{ class_names }}" >
|
<div class="{{ class_names }}" >
|
||||||
{% for bound_field in bound_fields %}{{ bound_field.html_error_list }}{% endfor %}
|
{% for bound_field in bound_fields %}{{ bound_field.html_error_list }}{% endfor %}
|
||||||
{% for bound_field in bound_fields %}
|
{% for bound_field in bound_fields %}
|
||||||
{% if bound_field.has_label_first %}
|
{% if bound_field.has_label_first %}{% field_label bound_field %}{% endif %}
|
||||||
{% field_label bound_field %}
|
|
||||||
{% endif %}
|
|
||||||
{% field_widget bound_field %}
|
{% field_widget bound_field %}
|
||||||
{% if not bound_field.has_label_first %}
|
{% if not bound_field.has_label_first %}{% field_label bound_field %}{% endif %}
|
||||||
{% field_label bound_field %}
|
|
||||||
{% endif %}
|
|
||||||
{% if bound_field.field.help_text %}<p class="help">{{ bound_field.field.help_text }}</p>{% endif %}
|
{% if bound_field.field.help_text %}<p class="help">{{ bound_field.field.help_text }}</p>{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue