13 lines
313 B
HTML
13 lines
313 B
HTML
{% for field in replaces_form %}
|
|
<tr{% if field.errors %} class="error"{% endif %}>
|
|
<th>{{ field.label_tag }}</th>
|
|
<td>
|
|
{{ field }}
|
|
{% if field.help_text %}
|
|
<div class="helptext">{{ field.help_text }}</div>
|
|
{% endif %}
|
|
{{ field.errors }}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|