diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-12-01 13:33:21 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:21 +0100 |
commit | dfad3d4b9d7779b5fcd125260021d9f008a68a4f (patch) | |
tree | f828418edadbf957db52121c13575ed7cc3e068c /archaeological_finds/urls.py | |
parent | fc3f77b2db29391ce1340c535a02b7a32583caa7 (diff) | |
download | Ishtar-dfad3d4b9d7779b5fcd125260021d9f008a68a4f.tar.bz2 Ishtar-dfad3d4b9d7779b5fcd125260021d9f008a68a4f.zip |
Context records: show find inside related context records
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 bab3fc6b4..7bf85d9a4 100644 --- a/archaeological_finds/urls.py +++ b/archaeological_finds/urls.py @@ -265,6 +265,10 @@ urlpatterns = [ name='get-own-find-for-ope', kwargs={'force_own': True}), url(r'get-find-for-ope/(?P<type>.+)?$', views.get_find_for_ope, name='get-find-for-ope'), + url(r'get-find-for-cr/cr/(?P<type>.+)?$', views.get_find_for_cr, + name='get-own-find-for-cr', kwargs={'force_own': True}), + url(r'get-find-for-cr/(?P<type>.+)?$', views.get_find_for_cr, + name='get-find-for-cr'), url(r'get-find-for-treatment/own/(?P<type>.+)?$', views.get_find_for_treatment, name='get-own-find-for-treatment', kwargs={'force_own': True}), |