summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/image_create.html
blob: 2e2b4f9f06b03a8ad76b3a3394655a194c92b8bf (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_image_create'),
                  method='post',
                  button_map={'create': 'primary'}) }}

{% endblock %}