Ticket #2612: help_text_patch.diff

File help_text_patch.diff, 887 bytes (added by hakejam, 17 years ago)
  • field_line.html

     
    11{% load admin_modify %}
    22<div class="{{ class_names }}" >
    33{% for bound_field in bound_fields %}{{ bound_field.html_error_list }}{% endfor %}
    4 {% for bound_field in bound_fields %}
     4{% for bound_field in bound_fields %}
     5<div class="float-left">
    56  {% if bound_field.has_label_first %}{% field_label bound_field %}{% endif %}
    67  {% field_widget bound_field %}
    78  {% if not bound_field.has_label_first %}{% field_label bound_field %}{% endif %}
    8   {% if bound_field.field.help_text %}<p class="help">{{ bound_field.field.help_text }}</p>{% endif%}
     9  {% if bound_field.field.help_text %}<p class="help">{{ bound_field.field.help_text }}</p>{% endif %}
     10</div>
    911{% endfor %}
    1012</div>
Back to Top