blob: 941ca822cdfc73cd3e467478529867b349a3ea84 (
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
30
|
{% extends 'images.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% set sidebar_state = 'disabled' %}
{% 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 %}
|