summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/mode.html
blob: d93e8a738b2ef9db1b90b60b9a65b3c8faa97bff (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 %}

{{ wtf.quick_form(form,
                  action=url_for('action_mode'),
                  method='post',
                  button_map={'ok': 'primary'},
                  extra_classes="m-5") }}

{% endblock %}