blob: cc268043145ccca8e4bee7a2e12be0053dd8a7f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% extends 'base.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% block content %}
{% for form in forms %}
{{ wtf.quick_form(form,
method='post',
form_type='inline',
extra_classes='m-2 p-2',
button_map={'modify': 'primary',
'delete': 'danger'}) }}
{% endfor %}
{% endblock %}
|