diff options
Diffstat (limited to 'ogcp')
-rw-r--r-- | ogcp/templates/actions/delete_center.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ogcp/templates/actions/delete_center.html b/ogcp/templates/actions/delete_center.html new file mode 100644 index 0000000..3a01c93 --- /dev/null +++ b/ogcp/templates/actions/delete_center.html @@ -0,0 +1,15 @@ +{% extends 'base.html' %} +{% import "bootstrap/wtf.html" as wtf %} + +{% block content %} + +<h1 class="m-5">{{_('Delete center form')}}</h1> + +{{ wtf.quick_form(form, + action=url_for('action_center_delete'), + method='post', + button_map={'submit': 'primary'}, + extra_classes="mx-5") }} + +{% endblock %} + |