blob: bbc760a23b954f914045361692a8b554c41a7350 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{% extends 'base.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% block content %}
{{ wtf.quick_form(form,
action=url_for('action_image_restore'),
method='post',
button_map={'restore': 'primary'}) }}
{% endblock %}
|