summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/image_details.html
blob: ab6650359708a8f6d74e08ed09ae551088e2e876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% extends 'images.html' %}
{% import "bootstrap/wtf.html" as wtf %}

{% set btn_back = true %}

{% block content %}

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

<div class="container mx-5">
    <form class="form" method="POST">
        {{ form.hidden_tag() }}

        {% for field in form if field.type != 'CSRFToken' and field.name not in ['scopes'] %}
        {% if not field.flags.hidden %}
        <div class="form-group row">
            <label for="name" class="col-sm-2 col-form-label">{{ field.label.text }}</label>
            <div class="col-sm-9">
                {{ field(class="form-control") }}
            </div>
        </div>
        {% endif %}
        {% endfor %}

        {% include 'scopes_checkbox_group.html' %}
    </form>
</div>

{% endblock %}