diff options
Diffstat (limited to 'ogcp/templates')
-rw-r--r-- | ogcp/templates/actions/delete_room.html | 15 | ||||
-rw-r--r-- | ogcp/templates/scopes.html | 2 |
2 files changed, 17 insertions, 0 deletions
diff --git a/ogcp/templates/actions/delete_room.html b/ogcp/templates/actions/delete_room.html new file mode 100644 index 0000000..a5aa529 --- /dev/null +++ b/ogcp/templates/actions/delete_room.html @@ -0,0 +1,15 @@ +{% extends 'base.html' %} +{% import "bootstrap/wtf.html" as wtf %} + +{% block content %} + +<h1 class="m-5">{{_('Delete room form')}}</h1> + +{{ wtf.quick_form(form, + action=url_for('action_room_delete'), + method='post', + button_map={'submit': 'primary'}, + extra_classes="mx-5") }} + +{% endblock %} + diff --git a/ogcp/templates/scopes.html b/ogcp/templates/scopes.html index df2b535..3cb84fd 100644 --- a/ogcp/templates/scopes.html +++ b/ogcp/templates/scopes.html @@ -61,6 +61,8 @@ formaction="{{ url_for('action_mode') }}" formmethod="get"> <input class="dropdown-item" type="submit" value="{{ _('Add room') }}" formaction="{{ url_for('action_room_add') }}" formmethod="get"> + <input class="dropdown-item" type="submit" value="{{ _('Delete room') }}" + formaction="{{ url_for('action_room_delete') }}" formmethod="get"> </div> </div> </form> |