summaryrefslogtreecommitdiffstats
path: root/ogcp/templates
diff options
context:
space:
mode:
authorJavier Sánchez Parra <jsanchez@soleta.eu>2021-08-23 14:35:43 +0200
committerOpenGnSys Support Team <soporte-og@soleta.eu>2021-08-23 17:13:02 +0200
commita51fdd9d30bbd257a00f7f9e167babbfbd8669ed (patch)
tree5e5563aac915f6f50a73c937dd0fda33c86bc3b0 /ogcp/templates
parent7b2d061f700175ed7725218bb4509b2f8523f97e (diff)
Add missing file from commit 9d98cf0
Diffstat (limited to 'ogcp/templates')
-rw-r--r--ogcp/templates/actions/delete_center.html15
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 %}
+