blob: f72a1266138890b7b2b9ed675266642d0e627742 (
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
|
{% extends 'images.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% set btn_back = true %}
{% block content %}
<h2 class="mx-5 subhead-heading">{{_('Update image')}} {{ form.name.data }}</h2>
<form class="form mx-5" method="POST" action="{{ url_for('action_image_config') }}">
{{ form.hidden_tag() }}
{{ form.image_id() }}
{{ form.server() }}
{{ form.name() }}
{% include 'scopes_checkbox_group.html' %}
<div class="form-group">
{{ form.submit(class="btn btn-primary") }}
</div>
</form>
{% endblock %}
|