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 | 154f9005337bba88e1e40186a2d908dc93a0d1aa (patch) | |
tree | cea71e684c74065595873639c2cf36c8f74dc5e5 /archaeological_context_records/urls.py | |
parent | 92eff6a269032012a7b16e02af6d56834c88425a (diff) | |
download | Ishtar-154f9005337bba88e1e40186a2d908dc93a0d1aa.tar.bz2 Ishtar-154f9005337bba88e1e40186a2d908dc93a0d1aa.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'), |