Refactor URL patterns for parks and rides; update context fields in models to use ForeignKey for pghistory.Context

This commit is contained in:
pacnpal
2025-02-10 10:54:34 -05:00
parent 9ed28b15b4
commit b4c474c496
12 changed files with 670 additions and 495 deletions

View File

@@ -13,9 +13,9 @@ urlpatterns = [
path("admin/", admin.site.urls),
# Main app URLs
path("", HomeView.as_view(), name="home"),
# Parks URLs
# Parks and Rides URLs
path("parks/", include("parks.urls", namespace="parks")),
# Rides URLs
# Global rides URLs
path("rides/", include("rides.urls", namespace="rides")),
# Other URLs
path("reviews/", include("reviews.urls")),