diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-02-25 15:58:32 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-02-25 15:58:32 +0100 |
commit | 8301e4705fccdf557d5d9e57eb32f9ba66c663b8 (patch) | |
tree | 5b761be14e420b8fb41ccaf55773f2f7d0f85611 /ishtar/furnitures/urls.py | |
parent | cfe087f98169570c8ace3c1ecaa47c6f6e661f54 (diff) | |
download | Ishtar-8301e4705fccdf557d5d9e57eb32f9ba66c663b8.tar.bz2 Ishtar-8301e4705fccdf557d5d9e57eb32f9ba66c663b8.zip |
Work on file sheet and odt export (refs #227)
Diffstat (limited to 'ishtar/furnitures/urls.py')
-rw-r--r-- | ishtar/furnitures/urls.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ishtar/furnitures/urls.py b/ishtar/furnitures/urls.py index 5123609fc..c93f14c78 100644 --- a/ishtar/furnitures/urls.py +++ b/ishtar/furnitures/urls.py @@ -87,13 +87,14 @@ urlpatterns += patterns('ishtar.furnitures.views', name='autocomplete-file'), url(BASE_URL + r'get-file/(?P<type>.+)?$', 'get_file', name='get-file'), - url(BASE_URL + r'show-file/(?P<pk>.+)?$', 'show_file', + url(BASE_URL + r'show-file/(?P<pk>.+)?/(?P<type>.+)?$', 'show_file', name='show-file'), url(BASE_URL + r'autocomplete-operation/$', 'autocomplete_operation', name='autocomplete-operation'), url(BASE_URL + r'get-operation/(?P<type>.+)?$', 'get_operation', name='get-operation'), - url(BASE_URL + r'show-operation/(?P<pk>.+)?$', 'show_operation', + url(BASE_URL + r'show-operation/(?P<pk>.+)?/(?P<type>.+)?$', + 'show_operation', name='show-operation'), url(BASE_URL + r'update-current-item/$', 'update_current_item', name='update-current-item'), |