diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2021-05-11 15:21:11 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2021-05-20 18:45:34 +0200 |
commit | 29480012e40f85e61568021776d660a9f73b7ea3 (patch) | |
tree | c9e1a2d5bbf4b6ddbf7a1ccc63cec6e8d7f3eda8 /ogcp/templates/scopes.html | |
parent | f303240c554fde68ded5aff4a13f96d07508eb7d (diff) |
Add "Delete Room" form and view
Creates "delete room" form with a select to choose a room to delete.
Adds a new button inside the button group in the scopes view. Because
scopes checkboxes values maps to ips the only way to specify the room to
delete is in the delete room form itself, using a select input.
Diffstat (limited to 'ogcp/templates/scopes.html')
-rw-r--r-- | ogcp/templates/scopes.html | 2 |
1 files changed, 2 insertions, 0 deletions
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> |