diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-02 17:27:03 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-02 17:27:03 +0200 |
commit | f83bdb58aee1cba40395aaba4d3c399f0016006a (patch) | |
tree | 9154b617bfa283b915cde3686138b5dfc7f15208 /archaeological_operations/urls.py | |
parent | 4566ddf6dfaa7d6a888e41638238096a4f8f53fc (diff) | |
download | Ishtar-f83bdb58aee1cba40395aaba4d3c399f0016006a.tar.bz2 Ishtar-f83bdb58aee1cba40395aaba4d3c399f0016006a.zip |
Add full export of operation's sources
Diffstat (limited to 'archaeological_operations/urls.py')
-rw-r--r-- | archaeological_operations/urls.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/archaeological_operations/urls.py b/archaeological_operations/urls.py index 76723deab..ef7d14dd6 100644 --- a/archaeological_operations/urls.py +++ b/archaeological_operations/urls.py @@ -130,6 +130,9 @@ urlpatterns += patterns( 'show_operationsource', name=models.OperationSource.SHOW_URL), url(r'get-operationsource/(?P<type>.+)?$', 'get_operationsource', name='get-operationsource'), + url(r'get-operationsource-full/(?P<type>.+)?$', + 'get_operationsource', name='get-operationsource-full', + kwargs={'full': True}), url(r'dashboard_operation/$', 'dashboard_operation', name='dashboard-operation'), url(r'autocomplete-archaeologicalsite/$', |