diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-12-14 22:02:33 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-12-14 22:02:33 +0100 |
commit | 6c47b6b3bc23aadc674175f140091f46aa5f3868 (patch) | |
tree | 51f9389ebd5b92cf477c169e9266201a8d90cbce /archaeological_finds/urls.py | |
parent | 08811d24b0a1869322db82b65c4fbd8a35bc7327 (diff) | |
download | Ishtar-6c47b6b3bc23aadc674175f140091f46aa5f3868.tar.bz2 Ishtar-6c47b6b3bc23aadc674175f140091f46aa5f3868.zip |
Force own filters for context records and finds
Diffstat (limited to 'archaeological_finds/urls.py')
-rw-r--r-- | archaeological_finds/urls.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/archaeological_finds/urls.py b/archaeological_finds/urls.py index 29f502e15..7a01f952b 100644 --- a/archaeological_finds/urls.py +++ b/archaeological_finds/urls.py @@ -62,10 +62,16 @@ urlpatterns += patterns( name='autocomplete-preservationtype'), url(r'autocomplete-integritytype/$', 'autocomplete_integritytype', name='autocomplete-integritytype'), + url(r'get-find/own/(?P<type>.+)?$', 'get_find', + name='get-own-find', kwargs={'force_own': True}), url(r'get-find/(?P<type>.+)?$', 'get_find', name='get-find'), + url(r'get-find-for-ope/own/(?P<type>.+)?$', 'get_find_for_ope', + name='get-own-find-for-ope', kwargs={'force_own': True}), url(r'get-find-for-ope/(?P<type>.+)?$', 'get_find_for_ope', name='get-find-for-ope'), + url(r'get-find-full/own/(?P<type>.+)?$', 'get_find', + name='get-own-find-full', kwargs={'full': True, 'force_own': True}), url(r'get-find-full/(?P<type>.+)?$', 'get_find', name='get-find-full', kwargs={'full': True}), url(r'get-findsource/(?P<type>.+)?$', |