Add missing file from commit 9d98cf0

multi-ogserver
Javier Sánchez Parra 2021-08-23 14:35:43 +02:00 committed by OpenGnSys Support Team
parent 7b2d061f70
commit a51fdd9d30
1 changed files with 15 additions and 0 deletions

View File

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