diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2014-10-14 18:31:32 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2014-10-14 18:31:32 +0200 |
commit | 65a99f54a4220bd18f5c4337e8d99ce5d24e665b (patch) | |
tree | 03df566bff5fdd124f321a024a93867f8a07c299 /ishtar_common/urls.py | |
parent | b0d0e07aae8bb2554e5224bf78976cf945d58d74 (diff) | |
download | Ishtar-65a99f54a4220bd18f5c4337e8d99ce5d24e665b.tar.bz2 Ishtar-65a99f54a4220bd18f5c4337e8d99ce5d24e665b.zip |
Re-arrange dashboard in tabs
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r-- | ishtar_common/urls.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index c46f555e9..8b148530e 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -63,6 +63,8 @@ urlpatterns += patterns('ishtar_common.views', # General url(r'dashboard-main/$', 'dashboard_main', name='dashboard-main'), + url(r'dashboard-main/(?P<item_name>[a-z-]+)/$', 'dashboard_main_detail', + name='dashboard-main-detail'), url(r'update-current-item/$', 'update_current_item', name='update-current-item'), url(r'new-person/(?:(?P<parent_name>[^/]+)/)?(?:(?P<limits>[^/]+)/)?$', |