diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-12-03 11:27:56 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-08 09:58:49 +0200 |
commit | 121382c0e1c5202c744b7ea8dcfe900ad95b4fa0 (patch) | |
tree | 951920eb84dc8c5fb5090c52b8e985470d0048ce /ishtar_common/urls.py | |
parent | f191344c922d9577a410af51a2b36a7c95d3692d (diff) | |
download | Ishtar-121382c0e1c5202c744b7ea8dcfe900ad95b4fa0.tar.bz2 Ishtar-121382c0e1c5202c744b7ea8dcfe900ad95b4fa0.zip |
Documents - add a sub-document from sheet: refactoring, use GET parameters instead of url parameters (refs #5172)
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r-- | ishtar_common/urls.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index de881e1ba..7bbdc189f 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -486,13 +486,6 @@ urlpatterns += [ name="create-document", ), url( - r"document/create/(?P<pk>[0-9-]+)?/$", - check_rights(["add_document", "add_own_document"])( - views.DocumentCreateView.as_view() - ), - name="create-document-source", - ), - url( r"document/edit/$", check_rights(["change_document", "change_own_document"])( views.DocumentSelectView.as_view() |