diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-09-03 12:30:35 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:21 +0100 |
commit | c996469e842ef3541f5b1290d2541dd6d2f2844e (patch) | |
tree | 0846cdf2ba3e22ea54a5f0054dccd703fbdb2879 /ishtar_common/urls.py | |
parent | 2f86de32aac26c4e019a9e136a6301afef0b7884 (diff) | |
download | Ishtar-c996469e842ef3541f5b1290d2541dd6d2f2844e.tar.bz2 Ishtar-c996469e842ef3541f5b1290d2541dd6d2f2844e.zip |
Document QA: packaging - fix QA for search and edit
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>[^/]+)/)?' |