summaryrefslogtreecommitdiff
path: root/archaeological_operations/urls.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2019-06-04 17:28:44 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2019-06-04 17:28:44 +0200
commitdaa8d5562ffcab11df290bf7101b2e3fe266b674 (patch)
tree1faf126fd84566f09901a694c144626e0c0df4ce /archaeological_operations/urls.py
parent5a82808c2fa33fdcec7d07b40b455feb645ade84 (diff)
downloadIshtar-daa8d5562ffcab11df290bf7101b2e3fe266b674.tar.bz2
Ishtar-daa8d5562ffcab11df290bf7101b2e3fe266b674.zip
QA operation: bulk modification
Diffstat (limited to 'archaeological_operations/urls.py')
-rw-r--r--archaeological_operations/urls.py9
1 files changed, 9 insertions, 0 deletions
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<pks>[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<pks>[0-9-]+)?/confirm/$',
+ check_rights(['change_operation', 'change_own_operation'])(
+ views.QAOperationForm.as_view()),
+ name='operation-qa-bulk-update-confirm', kwargs={"confirm": True}),
]