From 7adba01875d7b64a641d0562a9ec233de6a376cc Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Fri, 27 Dec 2013 22:35:21 +0100 Subject: Allow modification from the window (refs #1574) --- archaeological_context_records/urls.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'archaeological_context_records/urls.py') diff --git a/archaeological_context_records/urls.py b/archaeological_context_records/urls.py index 75808b114..7d288b031 100644 --- a/archaeological_context_records/urls.py +++ b/archaeological_context_records/urls.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2010-2012 Étienne Loks +# Copyright (C) 2010-2013 Étienne Loks # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -29,6 +29,8 @@ urlpatterns = patterns('', views.record_creation_wizard, name='record_creation'), url(r'record_modification/(?P.+)?$', views.record_modification_wizard, name='record_modification'), + url(r'record_modify/(?P.+)/$', + views.record_modify, name='record_modify'), url(r'record_deletion/(?P.+)?$', views.record_deletion_wizard, name='record_deletion'), url(r'record_source_creation/(?P.+)?$', -- cgit v1.2.3