blob: 69acc792ad55c13cdf2c54421dff4ba67392f316 (
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 sidebar_state = 'disabled' %}
{% set btn_back = true %}
{% block content %}
{{ args }}
{% set img_count = image_ids | length %}
<h2 class="mx-5 subhead-heading">
{{ _('Delete %(img_count)d image(s)', img_count=img_count) }}
</h2>
{{ wtf.quick_form(form,
action=url_for('action_image_delete'),
method='post',
button_map={'submit': 'primary'},
extra_classes="mx-5") }}
{% endblock %}
|