You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
607 B

<form method="POST" action="" enctype="multipart/form-data">
{{ form.hidden_tag() }}
<fieldset class="form-group">
{% for item in form %}
{% if item.id == 'submit' %}
{% elif item.id == 'csrf_token' %}
{% else %}
{% include 'form/stringField.html' %}
{% include 'form/selectFieldVer.html' %}
{% include 'form/dateField.html' %}
{% include 'form/boolField.html' %}
{% endif %}
{% endfor %}
</fieldset>
<div>{% include 'form/submitField.html' %}</div>
</form>