14 lines
348 B
HTML
14 lines
348 B
HTML
{% for field in replaces_form %}
|
|
<h3>Replacement information</h3>
|
|
<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 %}
|