mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 08:11:08 -05:00
12 lines
392 B
Python
12 lines
392 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>/edit/', views.RideUpdateView.as_view(), name='ride_edit'),
|
|
path('<slug:ride_slug>/', views.RideDetailView.as_view(), name='ride_detail'),
|
|
]
|