diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2022-05-02 20:38:45 +0200 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2022-05-02 20:38:52 +0200 |
commit | 9f6d6e7fd14d7987315ca2551cd4e4a4d3c5654a (patch) | |
tree | a57754005eb2b159825a83d735f57292964903a2 /templates/registration | |
parent | fix user switcher on admin side (diff) | |
download | scout-subs-9f6d6e7fd14d7987315ca2551cd4e4a4d3c5654a.tar.gz scout-subs-9f6d6e7fd14d7987315ca2551cd4e4a4d3c5654a.zip |
change invalid icon
Diffstat (limited to 'templates/registration')
-rw-r--r-- | templates/registration/base_admin.html | 4 | ||||
-rw-r--r-- | templates/registration/base_client.html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/registration/base_admin.html b/templates/registration/base_admin.html index e3e1e61..ad07775 100644 --- a/templates/registration/base_admin.html +++ b/templates/registration/base_admin.html @@ -89,7 +89,7 @@ {% endblock %} <ul class="right"> {% if user.is_staff or perms.client.staff %} - <li class="userswitcher" data-target='userswitcher'><a href="#">{{ user.username }}<i class="right material-icons">shield</i></a></li> + <li class="userswitcher" data-target='userswitcher'><a href="#">{{ user.username }}<i class="right material-icons">security</i></a></li> {% elif "capi" in user|user_groups%} <li class="userswitcher" data-target='userswitcher'><a href="#">{{ user.username }}<i class="right material-icons">supervisor_account</i></a></li> {% else %} @@ -157,4 +157,4 @@ </html> {% endwith %} {% endwith %} -{% endwith %}
\ No newline at end of file +{% endwith %} diff --git a/templates/registration/base_client.html b/templates/registration/base_client.html index b4781ce..ea2eb6a 100644 --- a/templates/registration/base_client.html +++ b/templates/registration/base_client.html @@ -110,7 +110,7 @@ {% endblock %} <ul class="right"> {% if user.is_staff or perms.client.staff %} - <li class="userswitcher" data-target='userswitcher'><a href="#">{{ user.username }}<i class="right material-icons">shield</i></a></li> + <li class="userswitcher" data-target='userswitcher'><a href="#">{{ user.username }}<i class="right material-icons">security</i></a></li> {% elif "capi" in user|user_groups%} <li class="userswitcher" data-target='userswitcher'><a href="#">{{ user.username }}<i class="right material-icons">supervisor_account</i></a></li> {% else %} @@ -178,4 +178,4 @@ </html> {% endwith %} {% endwith %} -{% endwith %}
\ No newline at end of file +{% endwith %} |