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:
parent
6ffb0863d1
commit
5f0e14934f
2 changed files with 198 additions and 0 deletions
|
@ -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 %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue