Remove "form" from scopes views' headings

multi-ogserver
Javier Sánchez Parra 2022-03-08 11:14:10 +01:00
parent 45d1d56ed9
commit 6b3b37e2f3
4 changed files with 4 additions and 4 deletions

View File

@ -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'),

View File

@ -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'),

View File

@ -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'),

View File

@ -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'),