From ac8a8030af444f40aaeefcdbb64de1767c551d4e Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 4 Jun 2019 18:24:19 +0200 Subject: QA document: bulk modification --- ishtar_common/urls.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'ishtar_common/urls.py') 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[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[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) -- cgit v1.2.3