major changes, including tailwind v4

This commit is contained in:
pacnpal
2025-08-15 12:24:20 -04:00
parent f6c8e0e25c
commit da7c7e3381
261 changed files with 22783 additions and 10465 deletions

View File

@@ -21,13 +21,9 @@ urlpatterns = [
# Global rides URLs
path("rides/", include("rides.urls", namespace="rides")),
# Other URLs
path("reviews/", include("reviews.urls")),
path("operators/", include("operators.urls", namespace="operators")),
path("property-owners/", include("property_owners.urls", namespace="property_owners")),
path("manufacturers/", include("manufacturers.urls", namespace="manufacturers")),
path("designers/", include("designers.urls", namespace="designers")),
path("photos/", include("media.urls", namespace="photos")), # Add photos URLs
path("search/", include("search.urls", namespace="search")),
path("search/", include("core.urls.search", namespace="search")),
path("api/map/", include("core.urls.map_urls", namespace="map_api")), # Map API URLs
path(
"terms/", TemplateView.as_view(template_name="pages/terms.html"), name="terms"
),
@@ -57,7 +53,6 @@ urlpatterns = [
path("user/", accounts_views.user_redirect_view, name="user_redirect"),
# Moderation URLs - placed after other URLs but before static/media serving
path("moderation/", include("moderation.urls", namespace="moderation")),
path("history/", include("history.urls", namespace="history")),
path(
"env-settings/",
views***REMOVED***ironment_and_settings_view,