Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
476 B
20 lines
476 B
|
|
<tr id="{{ id }}" >
|
|
<td>
|
|
<label class="field-label{% if field.field.required %} field-required{% endif %}" for="{{ field.id_for_label }}">
|
|
{{ field.label }}:
|
|
</label>
|
|
|
|
</td>
|
|
<td {% if field.help_text %} class="field-with-comment"{% endif %}>
|
|
{{ field }}
|
|
<span class="field-comment">{{ field.help_text|safe }}
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
{% if field.errors %}
|
|
<tr>
|
|
<td colspan="2"><span class="field-error">{{ field.errors }}</span></td>
|
|
</tr>
|
|
{% endif %}
|
|
|