blob: 608375f0577ee56d191b39ab708adcf82f64ccdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% extends 'images.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% block content %}
{{ args }}
<h1 class="m-5">
{{ _('Delete image %(image_name)s', image_name=image_name) }}
</h1>
{{ wtf.quick_form(form,
action=url_for('action_image_delete'),
method='post',
button_map={'submit': 'primary'},
extra_classes="mx-5") }}
{% endblock %}
|