diff options
Diffstat (limited to 'ishtar_common/urls.py')
| -rw-r--r-- | ishtar_common/urls.py | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index 79c9676ed..5ec8d4ee5 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -333,6 +333,11 @@ urlpatterns += [          check_rights(['change_document', 'change_own_document'])(              views.QADocumentDuplicateFormView.as_view()),          name='document-qa-duplicate'), +    url(r'^document-qa-packaging/(?P<pks>[0-9-]+)?/$', +        check_rights(['change_document', 'change_own_document'])( +            views.QADocumentPackagingFormView.as_view()), +        name='document-qa-packaging'), +      url(r'autocomplete-documenttag/$',          views.autocomplete_documenttag, name='autocomplete-documenttag'),      url(r'new-documenttag/(?:(?P<parent_name>[^/]+)/)?'  | 
