Django app to display tours with shepherdjs
pip install django-tours
# settings.py
INSTALLED_APPS = [
# ...
'tours',
# ...
]
If you want to set default variables, you can add the following in your settings.py file:
# settings.py
DEFAULT_SHEPHERD_JS = 'https://cdn.jsdelivr.net/npm/shepherd.js@latest/dist/js/shepherd.min.js'
DEFAULT_SHEPHERD_CSS = 'https://cdn.jsdelivr.net/npm/shepherd.js@latest/dist/css/shepherd.css'
urlpatterns = [
# ...
path('tours/', include('tours.urls')),
# ...
]
python manage.py migrate
{% load tours %}
{% load_tours request %}
This project is licensed under the MIT License. See LICENSE file for details.
This project is in Production/Stable ✔
If you find value in this project and would like to show your support, please consider making a donation via PayPal:
Your generosity helps us to continue improving and maintaining this project. We appreciate every contribution, however small. Thanks for being part of our community!