#1356 - vylepšení formátování chybové hlášky
This commit is contained in:
parent
5881a9d506
commit
a15ba2e9b2
1 changed files with 14 additions and 4 deletions
|
@ -15,7 +15,7 @@
|
||||||
{% for field in form.visible_fields %}
|
{% for field in form.visible_fields %}
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
<label class="field-label{% if field.field.required %} field-required{% endif %}" for="{{ field.id_for_label }}">
|
<label class="field-label{% if field.field.required %} field-required{% endif %}{% if field.errors%} field-error{% endif %}" for="{{ field.id_for_label }}">
|
||||||
{{ field.label }}:
|
{{ field.label }}:
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
|
@ -25,7 +25,6 @@
|
||||||
<span class="field-comment">{{ field.help_text|safe }}</span>
|
<span class="field-comment">{{ field.help_text|safe }}</span>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td><span class="field-error">{{ field.errors }}</span></td>
|
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
@ -33,6 +32,11 @@
|
||||||
<input type="button" value="Odebrat přílohu" class="remove_attachment" id="{{form.prefix}}-jsremove">
|
<input type="button" value="Odebrat přílohu" class="remove_attachment" id="{{form.prefix}}-jsremove">
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
{% for field in form.visible_fields %}
|
||||||
|
<td rowspan="2"><span class="field-error">{% for error in field.errors %}{{error}} {% endfor %}</span></td>
|
||||||
|
{% endfor %}
|
||||||
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -58,8 +62,6 @@
|
||||||
<span class="field-comment">{{ field.help_text|safe }}</span>
|
<span class="field-comment">{{ field.help_text|safe }}</span>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td><span class="field-error">{{ field.errors }}</span></td>
|
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
|
@ -68,6 +70,14 @@
|
||||||
<input type="button" value="Odebrat přílohu" class="remove_attachment" id="id_prilohy-__prefix__-jsremove">
|
<input type="button" value="Odebrat přílohu" class="remove_attachment" id="id_prilohy-__prefix__-jsremove">
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
{% for field in prilohy.empty_form.visible_fields %}
|
||||||
|
|
||||||
|
<td rowspan="2"><span class="field-error">{{ field.errors }}</span></td>
|
||||||
|
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue