mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-10-22 00:09:14 +00:00
13 lines
264 B
HTML
13 lines
264 B
HTML
{% for field in af %}
|
|
<div class="alert alert-warning text-center"> {{ field.errors }}</div>
|
|
{{ field.label_tag }}: {{ field }}
|
|
{% endfor %}
|
|
|
|
|
|
{% if af.errors %}
|
|
<ul>
|
|
{% for error in af.errors %}
|
|
<li><strong>{{ error }}</strong></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %} |