summaryrefslogtreecommitdiff
path: root/archaeological_operations/urls.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-09-22 19:10:49 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-09-24 16:48:04 +0200
commitdf6ea17f4b8bb1d45fe480044af80bd19742bf80 (patch)
tree64d15df919343bcd860d2cb818b353d1ef019e18 /archaeological_operations/urls.py
parent4473e91231794ba9082795df9441d49e461b10db (diff)
downloadIshtar-df6ea17f4b8bb1d45fe480044af80bd19742bf80.tar.bz2
Ishtar-df6ea17f4b8bb1d45fe480044af80bd19742bf80.zip
WIP: ajaxify shortcut menu - 2
Diffstat (limited to 'archaeological_operations/urls.py')
-rw-r--r--archaeological_operations/urls.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/archaeological_operations/urls.py b/archaeological_operations/urls.py
index a20eccfe5..f637fd23b 100644
--- a/archaeological_operations/urls.py
+++ b/archaeological_operations/urls.py
@@ -100,17 +100,17 @@ urlpatterns += patterns(
kwargs={'force_own': True}),
url(r'get-operation/(?P<type>.+)?$', 'get_operation',
name='get-operation'),
- url(r'get-operation-full/(?P<type>.+)?$', 'get_operation',
- name='get-operation-full', kwargs={'full': True}),
url(r'get-operation-full/own/(?P<type>.+)?$',
'get_operation', name='get-own-operation-full',
kwargs={'full': True, 'force_own': True}),
- url(r'get-operation-cached/(?P<type>.+)?$',
- 'get_operation', name='get-own-operation-cached',
- kwargs={'full': 'cached'}),
- url(r'get-operation-cached/own/(?P<type>.+)?$',
- 'get_operation', name='get-own-operation-cached',
- kwargs={'full': 'cached', 'force_own': True}),
+ url(r'get-operation-full/(?P<type>.+)?$', 'get_operation',
+ name='get-operation-full', kwargs={'full': True}),
+ url(r'get-operation-shortcut/own/(?P<type>.+)?$',
+ 'get_operation', name='get-own-operation-shortcut',
+ kwargs={'full': 'shortcut', 'force_own': True}),
+ url(r'get-operation-shortcut/(?P<type>.+)?$',
+ 'get_operation', name='get-operation-shortcut',
+ kwargs={'full': 'shortcut'}),
url(r'get-available-operation-code/(?P<year>.+)?$',
'get_available_operation_code', name='get_available_operation_code'),
url(r'revert-operation/(?P<pk>.+)/(?P<date>.+)$',