From 73680a9956ce9b5a81b12296a19c4c782cbb1573 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Fri, 6 Mar 2020 11:41:54 +0100 Subject: Sheet actions: add duplicate for site, operation, document and context record --- ishtar_common/urls.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ishtar_common/urls.py') diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index 8c08ade06..cc8d3eed4 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -319,6 +319,10 @@ urlpatterns += [ check_rights(['change_document', 'change_own_document'])( views.QADocumentForm.as_view()), name='document-qa-bulk-update-confirm', kwargs={"confirm": True}), + url(r'^document-qa-duplicate/(?P[0-9-]+)?/$', + check_rights(['change_document', 'change_own_document'])( + views.QADocumentDuplicateFormView.as_view()), + name='document-qa-duplicate'), url(r'^qa-not-available(?:/(?P[0-9a-z-]+))?/$', views.QANotAvailable.as_view(), name='qa-not-available'), -- cgit v1.2.3