diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-02 17:32:57 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-02 17:32:57 +0200 |
commit | 0e97b4834e3877018d61a140f1ec81d9e2215cfa (patch) | |
tree | ff1e4357510202200d6fbb505fe3f13c43cffbf2 /archaeological_context_records/urls.py | |
parent | f83bdb58aee1cba40395aaba4d3c399f0016006a (diff) | |
download | Ishtar-0e97b4834e3877018d61a140f1ec81d9e2215cfa.tar.bz2 Ishtar-0e97b4834e3877018d61a140f1ec81d9e2215cfa.zip |
Add full export of context record's sources
Diffstat (limited to 'archaeological_context_records/urls.py')
-rw-r--r-- | archaeological_context_records/urls.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/archaeological_context_records/urls.py b/archaeological_context_records/urls.py index 509c33064..52af8bda9 100644 --- a/archaeological_context_records/urls.py +++ b/archaeological_context_records/urls.py @@ -87,4 +87,7 @@ urlpatterns += patterns( 'show_contextrecordsource', name=models.ContextRecordSource.SHOW_URL), url(r'get-contexrecordsource/(?P<type>.+)?$', 'get_contextrecordsource', name='get-contextrecordsource'), + url(r'get-contexrecordsource-full/(?P<type>.+)?$', + 'get_contextrecordsource', name='get-contextrecordsource-full', + kwargs={'full': True}), ) |