summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJavier Sánchez Parra <jsanchez@soleta.eu>2022-03-08 11:14:10 +0100
committerJavier Sánchez Parra <jsanchez@soleta.eu>2022-03-09 17:06:42 +0100
commit6b3b37e2f34e6eb9bbc29c458525eb4c2b07d059 (patch)
tree780d765ded5d7e78951abf6971929adee5fc647e
parent45d1d56ed969963c3a8e8c26b49afa143cc1ef39 (diff)
Remove "form" from scopes views' headings
-rw-r--r--ogcp/templates/actions/add_center.html2
-rw-r--r--ogcp/templates/actions/add_room.html2
-rw-r--r--ogcp/templates/actions/delete_center.html2
-rw-r--r--ogcp/templates/actions/delete_room.html2
4 files changed, 4 insertions, 4 deletions
diff --git a/ogcp/templates/actions/add_center.html b/ogcp/templates/actions/add_center.html
index 396e332..5e52752 100644
--- a/ogcp/templates/actions/add_center.html
+++ b/ogcp/templates/actions/add_center.html
@@ -5,7 +5,7 @@
{% block nav_center_add %} active{% endblock %}
{% block content %}
-<h1 class="m-5">{{_('Add center form')}}</h1>
+<h1 class="m-5">{{_('Add center')}}</h1>
{{ wtf.quick_form(form,
action=url_for('action_center_add'),
diff --git a/ogcp/templates/actions/add_room.html b/ogcp/templates/actions/add_room.html
index 0a51fa9..a925116 100644
--- a/ogcp/templates/actions/add_room.html
+++ b/ogcp/templates/actions/add_room.html
@@ -5,7 +5,7 @@
{% block nav_room_add %} active{% endblock %}
{% block content %}
-<h1 class="m-5">{{_('Add room form')}}</h1>
+<h1 class="m-5">{{_('Add room')}}</h1>
{{ wtf.quick_form(form,
action=url_for('action_room_add'),
diff --git a/ogcp/templates/actions/delete_center.html b/ogcp/templates/actions/delete_center.html
index 668bf9c..d8c0c31 100644
--- a/ogcp/templates/actions/delete_center.html
+++ b/ogcp/templates/actions/delete_center.html
@@ -5,7 +5,7 @@
{% block nav_center_delete %} active{% endblock %}
{% block content %}
-<h1 class="m-5">{{_('Delete center form')}}</h1>
+<h1 class="m-5">{{_('Delete center')}}</h1>
{{ wtf.quick_form(form,
action=url_for('action_center_delete'),
diff --git a/ogcp/templates/actions/delete_room.html b/ogcp/templates/actions/delete_room.html
index fffb25d..ae4ca40 100644
--- a/ogcp/templates/actions/delete_room.html
+++ b/ogcp/templates/actions/delete_room.html
@@ -5,7 +5,7 @@
{% block nav_room_delete %} active{% endblock %}
{% block content %}
-<h1 class="m-5">{{_('Delete room form')}}</h1>
+<h1 class="m-5">{{_('Delete room')}}</h1>
{{ wtf.quick_form(form,
action=url_for('action_room_delete'),