summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/software.html
blob: 713f89b8493c3dd7ff8bd9bddbcdaf2f8963d551 (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_software'),
                  method='post',
                  button_map={'view': 'primary', 'update': 'primary'}) }}

{% endblock %}