diff options
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r-- | ishtar_common/urls.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index 0c249d131..f9f342ce3 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -240,6 +240,10 @@ urlpatterns += [ check_rights(['change_document', 'change_own_document'])( views.DocumentEditView.as_view()), name='edit-document'), + url(r'document/delete/(?P<step>.+)?$', + check_rights(['change_document', 'change_own_document'])( + views.document_deletion_wizard), + name='document_deletion'), ] urlpatterns += get_urls_for_model(models.Document, views) |