diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-01 15:50:52 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-12 09:57:24 +0200 |
commit | 572b9047260322ed19cc9f674657b8be8d62c052 (patch) | |
tree | 0ed9392291c50980c7dbff14c9a05edc601076de /archaeological_context_records/urls.py | |
parent | 66a376e081e335cf94ecf6fd41e5fe13a5445c57 (diff) | |
download | Ishtar-572b9047260322ed19cc9f674657b8be8d62c052.tar.bz2 Ishtar-572b9047260322ed19cc9f674657b8be8d62c052.zip |
Adapt forms, wizards, views, urls for new management of documents (refs #4107)
Diffstat (limited to 'archaeological_context_records/urls.py')
-rw-r--r-- | archaeological_context_records/urls.py | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/archaeological_context_records/urls.py b/archaeological_context_records/urls.py index 513e58543..5610150f1 100644 --- a/archaeological_context_records/urls.py +++ b/archaeological_context_records/urls.py @@ -42,24 +42,6 @@ urlpatterns = [ url(r'record_deletion/(?P<step>.+)?$', check_rights(['change_contextrecord', 'change_own_contextrecord'])( views.record_deletion_wizard), name='record_deletion'), - url(r'record_source_search/(?P<step>.+)?$', - check_rights(['view_contextrecord', 'view_own_contextrecord'])( - views.record_source_search_wizard), - name='record_source_search'), - url(r'record_source_creation/(?P<step>.+)?$', - check_rights(['change_contextrecord', 'change_own_contextrecord'])( - views.record_source_creation_wizard), - name='record_source_creation'), - url(r'record_source_modification/(?P<step>.+)?$', - 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), - name='record_source_deletion'), url(r'autocomplete-contextrecord/$', views.autocomplete_contextrecord, name='autocomplete-contextrecord'), url(r'show-contextrecord(?:/(?P<pk>.+))?/(?P<type>.+)?$', @@ -100,12 +82,4 @@ urlpatterns = [ url(r'get-contextrecordrelationdetail/(?P<type>.+)?$', views.get_contextrecordrelationdetail, name='get-contextrecordrelationdetail'), - url(r'show-contextrecordsource(?:/(?P<pk>.+))?/(?P<type>.+)?$', - views.show_contextrecordsource, - name=models.ContextRecordSource.SHOW_URL), - url(r'get-contexrecordsource/(?P<type>.+)?$', - views.get_contextrecordsource, name='get-contextrecordsource'), - url(r'get-contexrecordsource-full/(?P<type>.+)?$', - views.get_contextrecordsource, name='get-contextrecordsource-full', - kwargs={'full': True}), ] |