diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2020-07-30 20:36:49 +0200 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2020-07-30 20:36:49 +0200 |
commit | e8cf20110599c16df4f8a33ee36c3fe282cefa3a (patch) | |
tree | 8d0ca9e022e80c74dcaf4f656e56f01a20d12ec9 /templates | |
parent | block debug actions and confirm for approve doc (diff) | |
download | scout-subs-e8cf20110599c16df4f8a33ee36c3fe282cefa3a.tar.gz scout-subs-e8cf20110599c16df4f8a33ee36c3fe282cefa3a.zip |
perm staff for non primary group
Diffstat (limited to 'templates')
-rw-r--r-- | templates/registration/base.html | 2 | ||||
-rw-r--r-- | templates/registration/base_client.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/registration/base.html b/templates/registration/base.html index ae0b536..e2885cd 100644 --- a/templates/registration/base.html +++ b/templates/registration/base.html @@ -14,7 +14,7 @@ {% block nav %} {% endblock %} <ul class="right"> - {% if user.is_staff %} + {% if user.is_staff or perms.client.staff %} <li><a href="{% url 'server' %}">Pannello Admin</a></li> {% endif %} {% if user.is_authenticated %} diff --git a/templates/registration/base_client.html b/templates/registration/base_client.html index b6c3251..b526c84 100644 --- a/templates/registration/base_client.html +++ b/templates/registration/base_client.html @@ -14,7 +14,7 @@ {% block nav %} {% endblock %} <ul class="right"> - {% if user.is_staff %} + {% if user.is_staff or perms.client.staff %} <li><a href="{% url 'server' %}">Pannello Admin</a></li> {% endif %} {% if user.is_authenticated %} |