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 | be2f9250a3684d8a7b42cdedcb97b88689146583 (patch) | |
tree | 7110f2f745ecb8e54f5b38577704a52d99ebce73 /archaeological_context_records/urls.py | |
parent | c9cda5e8a6feb8447243c0bd38e57a219d7d478e (diff) | |
download | Ishtar-be2f9250a3684d8a7b42cdedcb97b88689146583.tar.bz2 Ishtar-be2f9250a3684d8a7b42cdedcb97b88689146583.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), |