[locations] Allow editing from detail page
All checks were successful
build & deploy / test (push) Successful in 2m3s
build & deploy / build-and-deploy (push) Successful in 32s

This commit is contained in:
2026-05-02 19:23:33 -04:00
parent 1866b43cbe
commit 666224875b
4 changed files with 46 additions and 3 deletions

View File

@ -15,4 +15,9 @@ urlpatterns = [
views.GeoLocationDetailView.as_view(),
name="geolocation_detail",
),
path(
"locations/<slug:slug>/edit/",
views.GeoLocationUpdateView.as_view(),
name="geolocation_edit",
),
]