templates: add missing center_update.html

Add html template for the route /action/center/update.
Finish the work started in commit 6ec26d16.
master
Alejandro Sirgo Rica 2024-06-12 12:19:17 +02:00
parent 12f74d5a4d
commit e7bafd7be9
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{% extends 'scopes.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% set sidebar_state = 'disabled' %}
{% set btn_back = true %}
{% block nav_folder %} active{% endblock %}
{% block nav_folder_update %} active{% endblock %}
{% block content %}
<h1 class="m-5">{{_('Update center')}}</h1>
{{ wtf.quick_form(form,
method='post',
button_map={'submit': 'primary'},
extra_classes="mx-5") }}
{% endblock %}