diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-10-15 20:01:12 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-10-15 20:01:12 +0200 |
commit | fde883430de039e48c06ea692e5421174bd8dea6 (patch) | |
tree | cea71e684c74065595873639c2cf36c8f74dc5e5 /archaeological_context_records/urls.py | |
parent | 11d517940134f0cc8b684bd44c6defebdc5e7745 (diff) | |
download | Ishtar-fde883430de039e48c06ea692e5421174bd8dea6.tar.bz2 Ishtar-fde883430de039e48c06ea692e5421174bd8dea6.zip |
Fix bookmarks fro sites, documents and context records (refs #4781)
Diffstat (limited to 'archaeological_context_records/urls.py')
-rw-r--r-- | archaeological_context_records/urls.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/archaeological_context_records/urls.py b/archaeological_context_records/urls.py index ec37b4a25..d5c2c7d7d 100644 --- a/archaeological_context_records/urls.py +++ b/archaeological_context_records/urls.py @@ -31,6 +31,9 @@ urlpatterns = [ url(r'record_search/(?P<step>.+)?$', check_rights(['view_contextrecord', 'view_own_contextrecord'])( views.record_search_wizard), name='record_search'), + url(r'contextrecord_search/(?P<step>.+)?$', + check_rights(['view_contextrecord', 'view_own_contextrecord'])( + views.record_search_wizard), name='contextrecord_search'), url(r'record_creation/(?P<step>.+)?$', check_rights(['add_contextrecord', 'add_own_contextrecord'])( views.record_creation_wizard), name='record_creation'), |