diff options
Diffstat (limited to 'archaeological_finds/urls.py')
| -rw-r--r-- | archaeological_finds/urls.py | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/archaeological_finds/urls.py b/archaeological_finds/urls.py index a585ba6a1..c780b14fb 100644 --- a/archaeological_finds/urls.py +++ b/archaeological_finds/urls.py @@ -113,6 +113,10 @@ urlpatterns = patterns(          check_rights(['change_find', 'change_own_find'])(              views.treatmentfile_modification_wizard),          name='treatmentfile_modification'), +    url(r'^treatmentfle_deletion/(?P<step>.+)?$', +        check_rights(['change_find', 'change_own_find'])( +            views.treatmentfile_deletion_wizard), +        name='treatmentfile_deletion'),      url(r'get-upstreamtreatment/(?P<type>.+)?$', views.get_upstreamtreatment,          name='get-upstreamtreatment'),      url(r'get-downstreamtreatment/(?P<type>.+)?$', @@ -130,6 +134,8 @@ urlpatterns += patterns(          name='autocomplete-preservationtype'),      url(r'autocomplete-integritytype/$', 'autocomplete_integritytype',          name='autocomplete-integritytype'), +    url(r'autocomplete-treatmentfile/$', 'autocomplete_treatmentfile', +        name='autocomplete-treatmentfile'),      url(r'get-find/own/(?P<type>.+)?$', 'get_find',          name='get-own-find', kwargs={'force_own': True}),      url(r'get-find/(?P<type>.+)?$', 'get_find', | 
