blob: df71b0b907ff794753df305f5a7b3aa4b2b09219 (
plain) (
tree)
|
|
{% load crispy_forms_utils %}
{% specialspaceless %}
{% if form_tag %}<form {{ flat_attrs }} method="{{ form_method }}" {% if form.is_multipart %} enctype="multipart/form-data"{% endif %}>{% endif %}
{% if form_method|lower == 'post' and not disable_csrf %}
{% csrf_token %}
{% endif %}
{% include "w3/display_form.html" %}
{% include "w3/inputs.html" %}
{% if form_tag %}</form>{% endif %}
{% endspecialspaceless %}
|