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 %} + +

{{_('Delete center form')}}

+ +{{ wtf.quick_form(form, + action=url_for('action_center_delete'), + method='post', + button_map={'submit': 'primary'}, + extra_classes="mx-5") }} + +{% endblock %} +