From c7c6cf9ea62f772476cd59efea71ff0293faa0be Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Tue, 11 Sep 2018 13:37:36 +1200 Subject: [PATCH] Add admin link to tools dropdown menu At the moment the only way to get to the index is to manually type in the URL, which is a little inconvenent. Add a link to the Tools drop-down (visible only for users with admin access) that will take you to it for convenience. Signed-off-by: Paul Eggleton --- templates/base.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/base.html b/templates/base.html index 23feee5..57f73be 100644 --- a/templates/base.html +++ b/templates/base.html @@ -84,6 +84,9 @@ {% if rrs_enabled %}
  • Recipe Maintenance
  • {% endif %} + {% if user.is_staff %} +
  • Admin
  • + {% endif %} {% endif %}