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

{% block content %}

{{ wtf.quick_form(form,
                  action=url_for('action_session'),
                  method='post',
                  button_map={'run': 'primary'}) }}

{% endblock %}