diff options
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r-- | ishtar_common/urls.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index fd9083e91..07e084e40 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -286,6 +286,8 @@ urlpatterns += [ check_rights(['change_document', 'change_own_document'])( views.document_deletion_wizard), name='document_deletion'), + url(r'document/shortcut/delete/(?P<pk>.+)/$', views.document_delete, + name='delete-document'), url(r'^document-qa-bulk-update/(?P<pks>[0-9-]+)?/$', check_rights(['change_document', 'change_own_document'])( |