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 534e618f7..0efd7e8d9 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -281,6 +281,10 @@ urlpatterns += [          check_rights(['view_document', 'view_own_document'])(              views.document_search_wizard),          name='search-document'), +    url(r'document/search/(?P<step>.+)?$', +        check_rights(['view_document', 'view_own_document'])( +            views.document_search_wizard), +        name='document_search'),      url(r'document/create/$',          check_rights(['add_document', 'add_own_document'])(              views.DocumentCreateView.as_view()), | 
