11 lines
318 B
HTML
Executable file
11 lines
318 B
HTML
Executable file
{% load crispy_forms_utils %}
|
|
|
|
{% specialspaceless %}
|
|
{% if include_media %}{{ form.media }}{% endif %}
|
|
{% if form_show_errors %}
|
|
{% include "bootstrap3/errors.html" %}
|
|
{% endif %}
|
|
{% for field in form %}
|
|
{% include "bootstrap3/field.html" %}
|
|
{% endfor %}
|
|
{% endspecialspaceless %}
|