From 45d1d56ed969963c3a8e8c26b49afa143cc1ef39 Mon Sep 17 00:00:00 2001 From: Javier Sánchez Parra Date: Mon, 7 Mar 2022 15:30:43 +0100 Subject: Set scopes nav buttons as active When loading any scopes view, its nav button becomes active. --- ogcp/templates/actions/add_center.html | 2 ++ ogcp/templates/actions/add_room.html | 2 ++ ogcp/templates/actions/client_details.html | 1 + ogcp/templates/actions/delete_center.html | 2 ++ ogcp/templates/actions/delete_client.html | 2 ++ ogcp/templates/actions/delete_room.html | 2 ++ ogcp/templates/scopes.html | 18 +++++++++--------- 7 files changed, 20 insertions(+), 9 deletions(-) diff --git a/ogcp/templates/actions/add_center.html b/ogcp/templates/actions/add_center.html index 59ab450..396e332 100644 --- a/ogcp/templates/actions/add_center.html +++ b/ogcp/templates/actions/add_center.html @@ -1,6 +1,8 @@ {% extends 'scopes.html' %} {% import "bootstrap/wtf.html" as wtf %} +{% block nav_center %} active{% endblock %} +{% block nav_center_add %} active{% endblock %} {% block content %}

{{_('Add center form')}}

diff --git a/ogcp/templates/actions/add_room.html b/ogcp/templates/actions/add_room.html index d3ecc8b..0a51fa9 100644 --- a/ogcp/templates/actions/add_room.html +++ b/ogcp/templates/actions/add_room.html @@ -1,6 +1,8 @@ {% extends 'scopes.html' %} {% import "bootstrap/wtf.html" as wtf %} +{% block nav_room %} active{% endblock %} +{% block nav_room_add %} active{% endblock %} {% block content %}

{{_('Add room form')}}

diff --git a/ogcp/templates/actions/client_details.html b/ogcp/templates/actions/client_details.html index f06fcda..62d73c7 100644 --- a/ogcp/templates/actions/client_details.html +++ b/ogcp/templates/actions/client_details.html @@ -3,6 +3,7 @@ {% block nav_client %} active{% endblock %} {% block nav_client_details %} active{% endblock %} +{% block nav_client_add %}active{% endblock %} {% block content %}

{{_('Client details')}}

diff --git a/ogcp/templates/actions/delete_center.html b/ogcp/templates/actions/delete_center.html index 1a52cdd..668bf9c 100644 --- a/ogcp/templates/actions/delete_center.html +++ b/ogcp/templates/actions/delete_center.html @@ -1,6 +1,8 @@ {% extends 'scopes.html' %} {% import "bootstrap/wtf.html" as wtf %} +{% block nav_center %} active{% endblock %} +{% block nav_center_delete %} active{% endblock %} {% block content %}

{{_('Delete center form')}}

diff --git a/ogcp/templates/actions/delete_client.html b/ogcp/templates/actions/delete_client.html index 7a144b5..637be21 100644 --- a/ogcp/templates/actions/delete_client.html +++ b/ogcp/templates/actions/delete_client.html @@ -2,6 +2,8 @@ {% import "bootstrap/wtf.html" as wtf %} {% import "macros.html" as macros %} +{% block nav_client %} active{% endblock %} +{% block nav_client_delete %} active{% endblock %} {% block content %} {% set ip_list = form.ips.data.split(' ') %} diff --git a/ogcp/templates/actions/delete_room.html b/ogcp/templates/actions/delete_room.html index 1761bb3..fffb25d 100644 --- a/ogcp/templates/actions/delete_room.html +++ b/ogcp/templates/actions/delete_room.html @@ -1,6 +1,8 @@ {% extends 'scopes.html' %} {% import "bootstrap/wtf.html" as wtf %} +{% block nav_room %} active{% endblock %} +{% block nav_room_delete %} active{% endblock %} {% block content %}

{{_('Delete room form')}}

diff --git a/ogcp/templates/scopes.html b/ogcp/templates/scopes.html index c4d4740..d565c96 100644 --- a/ogcp/templates/scopes.html +++ b/ogcp/templates/scopes.html @@ -17,35 +17,35 @@ {% block commands %} -- cgit v1.2.3-18-g5258