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

<h1 class="m-5">{{_('Image details')}}</h1>

{{ wtf.quick_form(form,
                  method='post',
                  button_map={'create': 'primary'},
                  extra_classes="mx-5") }}

{% endblock %}