kadenios/shared/templates/forms/file.html

31 lines
700 B
HTML
Raw Normal View History

2020-12-19 15:28:32 +01:00
{% load bulma_utils i18n %}
2020-11-20 19:31:22 +01:00
<label class="label {% if field.field.required %}{{ form.required_css_class }}{% endif %}">
{{ field.label }}
</label>
<div class="control">
<label class="file-label">
{{ field|bulmafy:'file-input' }}
<span class="file-cta">
<span class="file-icon">
2020-12-20 12:00:09 +01:00
<i class="fas fa-upload"></i>
2020-11-20 19:31:22 +01:00
</span>
<span class="file-label">
{% trans "Choisissez un fichier..." %}
</span>
</span>
</label>
{% for error in field.errors %}
2020-12-19 15:28:32 +01:00
<span class="help is-danger {{ form.error_css_class }}">{{ error }}</span>
2020-11-20 19:31:22 +01:00
{% endfor %}
{% if field.help_text %}
2020-12-19 15:28:32 +01:00
<p class="help">
{{ field.help_text|safe }}
</p>
2020-11-20 19:31:22 +01:00
{% endif %}
2020-12-19 15:28:32 +01:00
</div>