From 6db30b88dcb93dfeaba73637c19ff4b2891eb35b Mon Sep 17 00:00:00 2001 From: Steve Santacroce Date: Thu, 6 Oct 2022 18:34:28 -0400 Subject: [PATCH] Updated to check if a public link to use the organization website instead of / --- app/templates/app/base.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app/templates/app/base.html b/app/templates/app/base.html index e51f3d8f..570cc46b 100644 --- a/app/templates/app/base.html +++ b/app/templates/app/base.html @@ -92,8 +92,14 @@ {% block navbar-top-links %}{% endblock %} - {{ SETTINGS.app_name }} - + + {% if '/public/task/ in request.path %} + {{ SETTINGS.app_name }} + + {% else %} + {{ SETTINGS.app_name }} + + {% endif %} {% block navbar-sidebar %}{% endblock %}