summaryrefslogtreecommitdiff
path: root/archaeological_finds/urls.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-11-30 17:49:39 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-11-30 17:49:39 +0100
commit3232a862a9f68751ba17d7f850ce05f5f6a065c5 (patch)
tree13469ff4be4d6d84ae1272633b3f77ff25304246 /archaeological_finds/urls.py
parent227885e4a6b2df9e4df1507d93c31dd30c5b458a (diff)
downloadIshtar-3232a862a9f68751ba17d7f850ce05f5f6a065c5.tar.bz2
Ishtar-3232a862a9f68751ba17d7f850ce05f5f6a065c5.zip
Treatment searches and sheet
Diffstat (limited to 'archaeological_finds/urls.py')
-rw-r--r--archaeological_finds/urls.py4
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',