19 lines
432 B
HTML
19 lines
432 B
HTML
{% load bulma %}
|
|
|
|
<label class="label {% if field.field.required %}{{ form.required_css_class }}{% endif %}">
|
|
{{ field.label_tag }}
|
|
</label>
|
|
|
|
<div class="control">
|
|
{{ field|bulmafy:'textarea' }}
|
|
|
|
{% 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>
|