summaryrefslogtreecommitdiffstats
path: root/templates/w3/display_form.html
blob: 9c891dd33eccf6119d42d0205c2d984afac0b7d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
{% if form.form_html %}
    {% if include_media %}{{ form.media }}{% endif %}
    {% if form_show_errors %}
        {% include "w3/errors.html" %}
    {% endif %}
    {{ form.form_html }}
{% else %}
    {% include "w3/uni_form.html" %}
{% endif %}