mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 14:11:09 -05:00
- Created critical functionality audit report identifying 7 critical issues affecting production readiness. - Added design assessment report highlighting exceptional design quality and minor cosmetic fixes needed. - Documented non-authenticated features testing results confirming successful functionality and public access. - Implemented ride search form with autocomplete functionality and corresponding templates for search results. - Developed tests for ride autocomplete functionality, ensuring proper filtering and authentication checks.
19 lines
525 B
Python
19 lines
525 B
Python
from django.urls import path
|
|
from . import views
|
|
from rides.views import RideSearchView
|
|
|
|
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'),
|
|
|
|
# Ride search endpoints
|
|
path('rides/', RideSearchView.as_view(), name='ride_search'),
|
|
path(
|
|
'rides/results/',
|
|
RideSearchView.as_view(),
|
|
name='ride_search_results'
|
|
),
|
|
] |