1
0
Fork 0

add guided tour to main feed page

This uses an embedded script tag so that we can use django templates for logic - most importantly, we need to be able to use translations within the tour text.
This commit is contained in:
Hugh Rundle 2022-06-13 15:29:20 +10:00
parent 6ffb0863d1
commit 5f0e14934f
2 changed files with 198 additions and 0 deletions

View file

@ -32,4 +32,10 @@
{% block scripts %}
<script src="{% static "js/tabs.js" %}?v={{ js_cache }}"></script>
<!-- guided tour -->
{% if user.show_guided_tour %}
{% include 'guided_tour/home.html' %}
{% endif %}
{% endblock %}