Ticket #2612: help_text_patch.diff
File help_text_patch.diff, 887 bytes (added by , 17 years ago) |
---|
-
field_line.html
1 1 {% load admin_modify %} 2 2 <div class="{{ class_names }}" > 3 3 {% 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"> 5 6 {% if bound_field.has_label_first %}{% field_label bound_field %}{% endif %} 6 7 {% field_widget bound_field %} 7 8 {% 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> 9 11 {% endfor %} 10 12 </div>