mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 16:11:08 -05:00
10 lines
275 B
Python
10 lines
275 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'search'
|
|
|
|
urlpatterns = [
|
|
# Park-specific advanced search
|
|
path('parks/', views.AdaptiveSearchView.as_view(), name='search'),
|
|
path('parks/filters/', views.FilterFormView.as_view(), name='filter_form'),
|
|
] |