diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-22 12:02:48 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-22 12:02:48 +0200 |
commit | 9277ed4dbc77b6c70bb1f1420f9b5c3b33174ceb (patch) | |
tree | 7110f2f745ecb8e54f5b38577704a52d99ebce73 /archaeological_context_records/urls.py | |
parent | 8b3df5517e610cf7f1bf4f6ffe537d887997aa1b (diff) | |
download | Ishtar-9277ed4dbc77b6c70bb1f1420f9b5c3b33174ceb.tar.bz2 Ishtar-9277ed4dbc77b6c70bb1f1420f9b5c3b33174ceb.zip |
Add link to modify sources in the sheet
Diffstat (limited to 'archaeological_context_records/urls.py')
-rw-r--r-- | archaeological_context_records/urls.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archaeological_context_records/urls.py b/archaeological_context_records/urls.py index 52af8bda9..84560da67 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-2013 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet> +# Copyright (C) 2010-2016 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet> # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -51,6 +51,8 @@ urlpatterns = patterns( check_rights(['change_contextrecord', 'change_own_contextrecord'])( views.record_source_modification_wizard), name='record_source_modification'), + url(r'record_source_modify/(?P<pk>.+)/$', + views.record_source_modify, name='record_source_modify'), url(r'record_source_deletion/(?P<step>.+)?$', check_rights(['change_contextrecord', 'change_own_contextrecord'])( views.record_source_deletion_wizard), |