mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 08:51:09 -05:00
10 lines
223 B
Python
10 lines
223 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'),
|
|
]
|