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