summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/image_details.html
blob: 87105cb552ca8a9e59ff4fde211d76629243e038 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends 'images.html' %}
{% import "bootstrap/wtf.html" as wtf %}

{% set btn_back = true %}

{% block content %}

<h2 class="mx-5 subhead-heading">{{_('Image details')}}</h2>

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

{% endblock %}