From fbf7f376644397e44202dbb02be017ae63f44731 Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Mon, 13 Jun 2022 19:36:14 +1000 Subject: [PATCH] user profile tour only on activity tab --- bookwyrm/templates/user/layout.html | 6 ------ bookwyrm/templates/user/user.html | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bookwyrm/templates/user/layout.html b/bookwyrm/templates/user/layout.html index c4a71735e..29668b1f9 100755 --- a/bookwyrm/templates/user/layout.html +++ b/bookwyrm/templates/user/layout.html @@ -99,9 +99,3 @@ {% block panel %}{% endblock %} {% endblock %} - -{% block scripts %} -{% if user.show_guided_tour %} - {% include 'guided_tour/user_profile.html' %} -{% endif %} -{% endblock %} diff --git a/bookwyrm/templates/user/user.html b/bookwyrm/templates/user/user.html index af85159fc..45c08909d 100755 --- a/bookwyrm/templates/user/user.html +++ b/bookwyrm/templates/user/user.html @@ -86,3 +86,9 @@ {% endblock %} + +{% block scripts %} +{% if user.show_guided_tour %} + {% include 'guided_tour/user_profile.html' %} +{% endif %} +{% endblock %}