Files
thrillwiki_django_no_react/parks/services/__init__.py
pacnpal 652ea149bd Refactor park filtering system and templates
- Updated the filtered_list.html template to extend from base/base.html and improved layout and styling.
- Removed the park_list.html template as its functionality is now integrated into the filtered list.
- Added a new migration to create indexes for improved filtering performance on the parks model.
- Merged migrations to maintain a clean migration history.
- Implemented a ParkFilterService to handle complex filtering logic, aggregations, and caching for park filters.
- Enhanced filter suggestions and popular filters retrieval methods.
- Improved the overall structure and efficiency of the filtering system.
2025-08-20 21:20:10 -04:00

6 lines
228 B
Python

from .roadtrip import RoadTripService
from .park_management import ParkService, LocationService
from .filter_service import ParkFilterService
__all__ = ["RoadTripService", "ParkService", "LocationService", "ParkFilterService"]