diff options
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 |
commit | ac8a8030af444f40aaeefcdbb64de1767c551d4e (patch) | |
tree | a36d85c0d2ebc37880f9c4e84dfbe952d37e46a1 /ishtar_common/urls.py | |
parent | 235723102fdb7c5b74d42278b8d934b7e2830f1a (diff) | |
download | Ishtar-ac8a8030af444f40aaeefcdbb64de1767c551d4e.tar.bz2 Ishtar-ac8a8030af444f40aaeefcdbb64de1767c551d4e.zip |
QA document: bulk modification
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r-- | ishtar_common/urls.py | 9 |
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) |