blob: 220f69e09b40011526799b108493004e97d8030f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends 'base.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% block content %}
{{ wtf.quick_form(form,
method='post',
form_type='basic',
button_map={'submit':'primary'},
extra_classes='p-5') }}
{% endblock %}
|