diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-02-01 00:19:36 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-02-01 00:19:36 +0100 |
commit | d53fe70a3458cc8cd02367997c63bb17718dd45d (patch) | |
tree | ea588f9231d6c5cdf69ca0547aa9b901f1a3092f /ishtar/furnitures/urls.py | |
parent | 603b94b71f230cccfc1edd325c884c701660c473 (diff) | |
download | Ishtar-d53fe70a3458cc8cd02367997c63bb17718dd45d.tar.bz2 Ishtar-d53fe70a3458cc8cd02367997c63bb17718dd45d.zip |
Export tables as CSV (closes #158)
Diffstat (limited to 'ishtar/furnitures/urls.py')
-rw-r--r-- | ishtar/furnitures/urls.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ishtar/furnitures/urls.py b/ishtar/furnitures/urls.py index d20ae6035..7d9a6873a 100644 --- a/ishtar/furnitures/urls.py +++ b/ishtar/furnitures/urls.py @@ -69,12 +69,12 @@ urlpatterns += patterns('ishtar.furnitures.views', name='autocomplete-organization'), url(BASE_URL + r'autocomplete-file/$', 'autocomplete_file', name='autocomplete-file'), - url(BASE_URL + r'json-file/$', 'json_file', - name='json-file'), + url(BASE_URL + r'get-file/(?P<type>.+)?$', 'get_file', + name='get-file'), url(BASE_URL + r'autocomplete-operation/$', 'autocomplete_operation', name='autocomplete-operation'), - url(BASE_URL + r'json-operation/$', 'json_operation', - name='json-operation'), + url(BASE_URL + r'get-operation/(?P<type>.+)?$', 'get_operation', + name='get-operation'), url(BASE_URL + r'update-current-item/$', 'update_current_item', name='update-current-item'), ) |