diff options
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) |