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

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

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

{% endblock %}