From 30fe3e13608237b7c175c5e23cded8b18267da32 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Fri, 24 Nov 2017 16:47:32 +0100 Subject: [PATCH] Welcome page: Explore should go to cloud.blender.org when logged in Pointed out by Dr. Sybren --- src/templates/welcome.pug | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/templates/welcome.pug b/src/templates/welcome.pug index 8e79ac9..fa50635 100644 --- a/src/templates/welcome.pug +++ b/src/templates/welcome.pug @@ -25,12 +25,13 @@ li | {% block navigation_user %} li.nav-item-sign-in + | {% if current_user.is_anonymous %} a.navbar-item(href="{{ url_for('users.login', next='/') }}") - | {% if current_user.is_anonymous %} | Log in and Explore - | {% else %} + | {% else %} + a.navbar-item(href="{{ url_for('main.homepage') }}") | Explore - | {% endif %} + | {% endif %} | {% endblock navigation_user %}