From daa8d5562ffcab11df290bf7101b2e3fe266b674 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 4 Jun 2019 17:28:44 +0200 Subject: QA operation: bulk modification --- archaeological_operations/urls.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'archaeological_operations/urls.py') diff --git a/archaeological_operations/urls.py b/archaeological_operations/urls.py index fe2480940..1cb66de6f 100644 --- a/archaeological_operations/urls.py +++ b/archaeological_operations/urls.py @@ -167,4 +167,13 @@ urlpatterns = [ url(r'operation_administrativeact_document/$', views.administrativeactfile_document, name='operation-administrativeact-document'), + + url(r'^operation-qa-bulk-update/(?P[0-9-]+)?/$', + check_rights(['change_operation', 'change_own_operation'])( + views.QAOperationForm.as_view()), + name='operation-qa-bulk-update'), + url(r'^operation-qa-bulk-update/(?P[0-9-]+)?/confirm/$', + check_rights(['change_operation', 'change_own_operation'])( + views.QAOperationForm.as_view()), + name='operation-qa-bulk-update-confirm', kwargs={"confirm": True}), ] -- cgit v1.2.3