mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 12:11:13 -05:00
10 lines
250 B
Python
10 lines
250 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'rides'
|
|
|
|
urlpatterns = [
|
|
path('', views.RideListView.as_view(), name='ride_list'),
|
|
path('<slug:park_slug>/<slug:ride_slug>/', views.RideDetailView.as_view(), name='ride_detail'),
|
|
]
|