diff options
Diffstat (limited to 'chimere/urls.py')
-rw-r--r-- | chimere/urls.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chimere/urls.py b/chimere/urls.py index e0153f0..b5fa815 100644 --- a/chimere/urls.py +++ b/chimere/urls.py @@ -99,8 +99,10 @@ urlpatterns += patterns( name="contact"), url(r'^(?P<area_name>[a-zA-Z0-9_-]+/)?edit/$', 'edit', name="edit"), - url(r'^(?P<area_name>[a-zA-Z0-9_-]+/)?edit/(?P<item_id>\w+)/' - r'(?P<submited>\w+)?$', 'edit', name="edit-item"), + url(r'^(?P<area_name>[a-zA-Z0-9_-]+/)?edit-marker/' + r'(?P<submited>\w+)?$', 'editMarker', name="editmarker"), + url(r'^(?P<area_name>[a-zA-Z0-9_-]+/)?edit-marker/(?P<item_id>\w+)/' + r'(?P<submited>\w+)?$', 'editMarker', name="edit-item"), url(r'^(?P<area_name>[a-zA-Z0-9_-]+/)?edit-route/$', 'editRoute', name="editroute"), url(r'^(?P<area_name>[a-zA-Z0-9_-]+/)?edit-route/(?P<item_id>\w+)/' |