diff options
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 |
commit | daee77bd657f0e72767d64dd92f36008e1c47676 (patch) | |
tree | 1faf126fd84566f09901a694c144626e0c0df4ce /archaeological_operations/urls.py | |
parent | d7e26ad68e62014d1fbe01c36b0bd1d5688181c2 (diff) | |
download | Ishtar-daee77bd657f0e72767d64dd92f36008e1c47676.tar.bz2 Ishtar-daee77bd657f0e72767d64dd92f36008e1c47676.zip |
QA operation: bulk modification
Diffstat (limited to 'archaeological_operations/urls.py')
-rw-r--r-- | archaeological_operations/urls.py | 9 |
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}), ] |