10 lines
354 B
Python
10 lines
354 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.tour_list, name='tour_list'),
|
|
path('data/<slug:slug>/', views.get_tour_data, name='get_tour_data'),
|
|
path('complete/<slug:slug>/', views.mark_tour_completed, name='mark_tour_complete'),
|
|
path('start/<slug:slug>/', views.start_tour_view, name='start_tour'),
|
|
]
|