summaryrefslogtreecommitdiff
path: root/archaeological_finds/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_finds/urls.py')
-rw-r--r--archaeological_finds/urls.py75
1 files changed, 0 insertions, 75 deletions
diff --git a/archaeological_finds/urls.py b/archaeological_finds/urls.py
index c9aaae2a2..bd466a1af 100644
--- a/archaeological_finds/urls.py
+++ b/archaeological_finds/urls.py
@@ -43,24 +43,6 @@ urlpatterns = [
views.find_deletion_wizard), name='find_deletion'),
url(r'find_modify/(?P<pk>.+)/$',
views.find_modify, name='find_modify'),
- url(r'find_source_search/(?P<step>.+)?$',
- check_rights(['view_find', 'view_own_find'])(
- views.find_source_search_wizard),
- name='find_source_search'),
- url(r'find_source_creation/(?P<step>.+)?$',
- check_rights(['change_find', 'change_own_find'])(
- views.find_source_creation_wizard),
- name='find_source_creation'),
- url(r'find_source_modification/(?P<step>.+)?$',
- check_rights(['change_find', 'change_own_find'])(
- views.find_source_modification_wizard),
- name='find_source_modification'),
- url(r'find_source_modify/(?P<pk>.+)/$',
- views.find_source_modify, name='find_source_modify'),
- url(r'find_source_deletion/(?P<step>.+)?$',
- check_rights(['change_find', 'change_own_find'])(
- views.find_source_deletion_wizard),
- name='find_source_deletion'),
url(r'^find_basket_creation/$',
check_rights(['change_find', 'change_own_find'])(
views.NewFindBasketView.as_view()), name='new_findbasket'),
@@ -105,31 +87,6 @@ urlpatterns = [
check_rights(['change_find', 'change_own_find'])(
views.treatment_deletion_wizard), name='treatment_deletion'),
- url(r'^show-treatmentsource(?:/(?P<pk>.+))?/(?P<type>.+)?$',
- views.show_treatmentsource,
- name=models.TreatmentSource.SHOW_URL),
- url(r'^get-treatmentsource/(?P<type>.+)?$',
- views.get_treatmentsource,
- name='get-treatmentsource'),
- url(r'^treatment_source_search/(?P<step>.+)?$',
- check_rights(['view_treatment', 'view_own_treatment'])(
- views.treatment_source_search_wizard),
- name='treatment_source_search'),
- url(r'^treatment_source_creation/(?P<step>.+)?$',
- check_rights(['change_treatment', 'change_own_treatment'])(
- views.treatment_source_creation_wizard),
- name='treatment_source_creation'),
- url(r'^treatment_source_modification/(?P<step>.+)?$',
- check_rights(['change_treatment', 'change_own_treatment'])(
- views.treatment_source_modification_wizard),
- name='treatment_source_modification'),
- url(r'^treatment_source_modify/(?P<pk>.+)/$',
- views.treatment_source_modify, name='treatment_source_modify'),
- url(r'^treatment_source_deletion/(?P<step>.+)?$',
- check_rights(['change_treatment', 'change_own_treatment'])(
- views.treatment_source_deletion_wizard),
- name='treatment_source_deletion'),
-
url(r'^treatment_admacttreatment_search/(?P<step>.+)?$',
check_rights(['change_administrativeact'])(
views.treatment_administrativeact_search_wizard),
@@ -173,30 +130,6 @@ urlpatterns = [
views.treatmentfile_admacttreatmentfile_deletion_wizard),
name='treatmentfle_admacttreatmentfle_deletion'),
- url(r'^show-treatmentfilesource(?:/(?P<pk>.+))?/(?P<type>.+)?$',
- views.show_treatmentfilesource,
- name=models.TreatmentFileSource.SHOW_URL),
- url(r'^get-treatmentfilesource/(?P<type>.+)?$',
- views.get_treatmentfilesource,
- name='get-treatmentfilesource'),
- url(r'^treatmentfile_source_search/(?P<step>.+)?$',
- check_rights(['view_treatmentfile', 'view_own_treatmentfile'])(
- views.treatmentfile_source_search_wizard),
- name='treatmentfile_source_search'),
- url(r'^treatmentfile_source_creation/(?P<step>.+)?$',
- check_rights(['change_treatmentfile', 'change_own_treatmentfile'])(
- views.treatmentfile_source_creation_wizard),
- name='treatmentfile_source_creation'),
- url(r'^treatmentfile_source_modification/(?P<step>.+)?$',
- check_rights(['change_treatmentfile', 'change_own_treatmentfile'])(
- views.treatmentfile_source_modification_wizard),
- name='treatmentfile_source_modification'),
- url(r'^treatmentfile_source_modify/(?P<pk>.+)/$',
- views.treatmentfile_source_modify, name='treatmentfile_source_modify'),
- url(r'^treatmentfile_source_deletion/(?P<step>.+)?$',
- check_rights(['change_treatmentfile', 'change_own_treatmentfile'])(
- views.treatmentfile_source_deletion_wizard),
- name='treatmentfile_source_deletion'),
url(r'^treatmentfle_search/(?P<step>.+)?$',
check_rights(['change_find', 'change_own_find'])(
views.treatmentfile_search_wizard),
@@ -253,14 +186,6 @@ urlpatterns = [
url(r'get-find-shortcut/(?P<type>.+)?$',
views.get_find, name='get-find-shortcut',
kwargs={'full': 'shortcut'}),
- url(r'get-findsource/(?P<type>.+)?$',
- views.get_findsource, name='get-findsource'),
- url(r'get-findsource-full/(?P<type>.+)?$',
- views.get_findsource, name='get-findsource-full',
- kwargs={'full': True}),
- url(r'^show-findsource(?:/(?P<pk>.+))?/(?P<type>.+)?$',
- views.show_findsource,
- name=models.FindSource.SHOW_URL),
url(r'^show-find/basket-(?P<pk>.+)/(?P<type>.+)?$', views.show_findbasket,
name='show-findbasket'),
url(r'^display-find/basket-(?P<pk>.+)/$', views.display_findbasket,