summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/image_details.html
blob: e54d3e824b4645f037bfd16d0ec19c17c19fef39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends 'images.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 %}