diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-04-12 19:19:54 +0200 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-04-12 19:19:54 +0200 | 
| commit | 8249510dcab33b7ef95d75bf4be4e0af5b3f5f48 (patch) | |
| tree | c1fba513ad10b3758a49cdbfd2989fb44012f031 /ishtar/furnitures/urls.py | |
| parent | d0e31acb2cfb5c7300d3f8b833219b756577d73b (diff) | |
| download | Ishtar-8249510dcab33b7ef95d75bf4be4e0af5b3f5f48.tar.bz2 Ishtar-8249510dcab33b7ef95d75bf4be4e0af5b3f5f48.zip  | |
Add a rollback button (closes #349)
Diffstat (limited to 'ishtar/furnitures/urls.py')
| -rw-r--r-- | ishtar/furnitures/urls.py | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/ishtar/furnitures/urls.py b/ishtar/furnitures/urls.py index 5a155b5b5..e7e9ff85a 100644 --- a/ishtar/furnitures/urls.py +++ b/ishtar/furnitures/urls.py @@ -96,7 +96,7 @@ actions = r"|".join(actions)  urlpatterns += patterns('ishtar.furnitures.views',       url(BASE_URL + r'(?P<action_slug>' + actions + r')/$', 'action',           name='action'), -     url(BASE_URL + r'autocomplete-persone/([0-9_]+)?$', 'autocomplete_person', +     url(BASE_URL + r'autocomplete-person/([0-9_]+)?$', 'autocomplete_person',                                        name='autocomplete-person'),       url(BASE_URL + r'autocomplete-town/$', 'autocomplete_town',                                        name='autocomplete-town'), @@ -113,10 +113,14 @@ urlpatterns += patterns('ishtar.furnitures.views',                                        name='show-file'),       url(BASE_URL + r'show-historized-file/(?P<pk>.+)?/(?P<date>.+)?$',                          'show_file', name='show-historized-file'), +     url(BASE_URL + r'revert-file/(?P<pk>.+)/(?P<date>.+)$', +                        'revert_file', name='revert-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'revert-operation/(?P<pk>.+)/(?P<date>.+)$', +                        'revert_operation', name='revert-operation'),       url(BASE_URL + r'show-operation/(?P<pk>.+)?/(?P<type>.+)?$',                                        'show_operation',                                        name='show-operation'),  | 
