summaryrefslogtreecommitdiff
path: root/ishtar_common/urls.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2019-06-04 18:24:19 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2019-06-04 18:24:19 +0200
commit19ce74c574ee3673caa7883d45e3db9b97382051 (patch)
treea36d85c0d2ebc37880f9c4e84dfbe952d37e46a1 /ishtar_common/urls.py
parent87df7fd7357f3210953038bff58477319e12b6fc (diff)
downloadIshtar-19ce74c574ee3673caa7883d45e3db9b97382051.tar.bz2
Ishtar-19ce74c574ee3673caa7883d45e3db9b97382051.zip
QA document: bulk modification
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r--ishtar_common/urls.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py
index 26dfcdc07..1a4c43a3a 100644
--- a/ishtar_common/urls.py
+++ b/ishtar_common/urls.py
@@ -275,6 +275,15 @@ urlpatterns += [
check_rights(['change_document', 'change_own_document'])(
views.document_deletion_wizard),
name='document_deletion'),
+
+ url(r'^document-qa-bulk-update/(?P<pks>[0-9-]+)?/$',
+ check_rights(['change_document', 'change_own_document'])(
+ views.QADocumentForm.as_view()),
+ name='document-qa-bulk-update'),
+ url(r'^document-qa-bulk-update/(?P<pks>[0-9-]+)?/confirm/$',
+ check_rights(['change_document', 'change_own_document'])(
+ views.QADocumentForm.as_view()),
+ name='document-qa-bulk-update-confirm', kwargs={"confirm": True}),
]
urlpatterns += get_urls_for_model(models.Document, views)