diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-22 09:46:06 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-24 16:48:04 +0200 |
commit | 9c91dceeaa2233ed0bb60f88dd0879b04247915a (patch) | |
tree | f765507272d16ad73ada0198fc30f8afc1b97319 /archaeological_operations/urls.py | |
parent | 22dc7bb1454275af103c9f93cca750e4a7987e28 (diff) | |
download | Ishtar-9c91dceeaa2233ed0bb60f88dd0879b04247915a.tar.bz2 Ishtar-9c91dceeaa2233ed0bb60f88dd0879b04247915a.zip |
WIP: ajaxify shortcut menu
Diffstat (limited to 'archaeological_operations/urls.py')
-rw-r--r-- | archaeological_operations/urls.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/archaeological_operations/urls.py b/archaeological_operations/urls.py index 7d494f973..a20eccfe5 100644 --- a/archaeological_operations/urls.py +++ b/archaeological_operations/urls.py @@ -105,6 +105,12 @@ urlpatterns += patterns( 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-available-operation-code/(?P<year>.+)?$', 'get_available_operation_code', name='get_available_operation_code'), url(r'revert-operation/(?P<pk>.+)/(?P<date>.+)$', |