diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-12 12:19:17 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-13 17:38:44 +0200 |
commit | e7bafd7be9c59f49f92b4f9e0643e2292d0ef9e6 (patch) | |
tree | fa5f6c662d7e56ded2c1f6704904e2d8d02ea203 | |
parent | 12f74d5a4dbb429813427639aba52b446fddaadc (diff) |
templates: add missing center_update.html
Add html template for the route /action/center/update.
Finish the work started in commit 6ec26d16.
-rw-r--r-- | ogcp/templates/actions/center_update.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ogcp/templates/actions/center_update.html b/ogcp/templates/actions/center_update.html new file mode 100644 index 0000000..e93ac14 --- /dev/null +++ b/ogcp/templates/actions/center_update.html @@ -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 %} |