gestioCOF/bds/templates/bds/forms/input.html
Ludovic Stephan c8c8c6abc8 Message fixes
2020-07-20 19:06:19 +02:00

19 lines
No EOL
440 B
HTML

{% load bulma_utils %}
<label class="label {% if field.field.required %}{{ form.required_css_class }}{% endif %}">
{{ field.label }}
</label>
<div class="control">
{{ field|bulmafy:'input' }}
{% for error in field.errors %}
<span class="help is-danger {{ form.error_css_class }}">{{ error }}</span>
{% endfor %}
{% if field.help_text %}
<p class="help">
{{ field.help_text|safe }}
</p>
{% endif %}
</div>