summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/setup.html
blob: c7c4345572d50a0567d05a1ed61de4f8b6820414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends 'base.html' %}
{% import "bootstrap/wtf.html" as wtf %}

{% block content %}

{% for form in forms %}
{{ wtf.quick_form(form,
                  method='post',
                  button_map={'modify': 'primary',
                              'delete': 'danger'}) }}
{% endfor %}

{% endblock %}