mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 07:11:08 -05:00
11 lines
301 B
Python
11 lines
301 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'parks'
|
|
|
|
urlpatterns = [
|
|
path('', views.ParkListView.as_view(), name='park_list'),
|
|
path('create/', views.ParkCreateView.as_view(), name='park_create'),
|
|
path('<slug:slug>/', views.ParkDetailView.as_view(), name='park_detail'),
|
|
]
|