diff options
Diffstat (limited to 'archaeological_finds/urls.py')
| -rw-r--r-- | archaeological_finds/urls.py | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/archaeological_finds/urls.py b/archaeological_finds/urls.py index bbb123d09..220087d33 100644 --- a/archaeological_finds/urls.py +++ b/archaeological_finds/urls.py @@ -119,6 +119,10 @@ urlpatterns += patterns(          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-for-treatment/own/(?P<type>.+)?$', 'get_find_for_treatment', +        name='get-own-find-for-treatment', kwargs={'force_own': True}), +    url(r'get-find-for-treatment/(?P<type>.+)?$', 'get_find_for_treatment', +        name='get-find-for-treatment'),      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', | 
