summaryrefslogtreecommitdiff
path: root/app/locations/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/locations/urls.py')
-rw-r--r--app/locations/urls.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/locations/urls.py b/app/locations/urls.py
index 5faefc1..ee98b17 100644
--- a/app/locations/urls.py
+++ b/app/locations/urls.py
@@ -6,6 +6,11 @@ app_name = "locations"
urlpatterns = [
path(
+ r'<str:slug>',
+ views.WalkDetail.as_view(),
+ name="walk-detail"
+ ),
+ path(
r'<str:country>/<str:state>/<str:slug>/',
views.LocationDetail.as_view(),
name="location-detail"