[locations] Add locations to dashboard

This commit is contained in:
2025-09-11 18:29:28 -04:00
parent 3b77feda45
commit 92c0c668b3
5 changed files with 20 additions and 10 deletions

View File

@ -8,11 +8,11 @@ urlpatterns = [
path(
"locations/",
views.GeoLocationListView.as_view(),
name="geo_locations_list",
name="geolocation_list",
),
path(
"locations/<slug:slug>/",
views.GeoLocationDetailView.as_view(),
name="geo_location_detail",
name="geolocation_detail",
),
]