blob: 3ef13a6bd393c81f12e4c25037b7f73ba42b01da (
plain)
1
2
3
4
5
6
7
8
9
10
|
{% extends 'base.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% block content %}
{{ wtf.quick_form(form,
method='post',
button_map={'create': 'primary'}) }}
{% endblock %}
|