diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-10 12:29:37 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-12 10:46:13 +0200 |
commit | 4649cf3fcfd901dfd099355a29b664a450966823 (patch) | |
tree | 6964cba3625130b7336075f01b4f2d678517e20a /ishtar_common/urls.py | |
parent | ef4a039625f5f68f8e16ec5f1737f31da85fdaa5 (diff) | |
download | Ishtar-4649cf3fcfd901dfd099355a29b664a450966823.tar.bz2 Ishtar-4649cf3fcfd901dfd099355a29b664a450966823.zip |
Quick action to add a document from a sheet (refs #4107)
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r-- | ishtar_common/urls.py | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index d030c4529..0c249d131 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -248,34 +248,6 @@ urlpatterns += [ url(r'(?P<action_slug>' + actions + r')/$', views.action, name='action'), ] -""" - url(r'operation_source_search/(?P<step>.+)?$', - check_rights(['view_operation', 'view_own_operation'])( - views.operation_source_search_wizard), - name='operation_source_search'), - url(r'operation_source_creation/(?P<step>.+)?$', - check_rights(['change_operation', 'change_own_operation'])( - views.operation_source_creation_wizard), - name='operation_source_creation'), - url(r'operation_source_modification/(?P<step>.+)?$', - check_rights(['change_operation', 'change_own_operation'])( - views.operation_source_modification_wizard), - name='operation_source_modification'), - url(r'operation_source_modify/(?P<pk>.+)/$', - views.operation_source_modify, name='operation_source_modify'), - url(r'operation_source_deletion/(?P<step>.+)?$', - check_rights(['change_operation', 'change_own_operation'])( - views.operation_source_deletion_wizard), - name='operation_source_deletion'), - - url(r'show-operationsource(?:/(?P<pk>.+))?/(?P<type>.+)?$', - views.show_operationsource, name=models.OperationSource.SHOW_URL), - url(r'get-operationsource/(?P<type>.+)?$', - views.get_operationsource, name='get-operationsource'), - url(r'get-operationsource-full/(?P<type>.+)?$', - views.get_operationsource, name='get-operationsource-full', - kwargs={'full': True}), -""" if settings.DEBUG: urlpatterns += static(settings.STATIC_URL, |