summaryrefslogtreecommitdiffstats
path: root/apps/patchwork/urls.py
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2008-09-23 20:52:53 +1000
committerJeremy Kerr <jk@ozlabs.org>2008-09-23 20:52:53 +1000
commit750c03f854ace16cd013c189369aa0cf9d3bdd9d (patch)
tree91415c0436e8e901461fe65a88a3504b102b2e57 /apps/patchwork/urls.py
parentdff684304a35c14e23d89783d18e1664222b3fcb (diff)
downloadpatchwork-750c03f854ace16cd013c189369aa0cf9d3bdd9d.tar.bz2
patchwork-750c03f854ace16cd013c189369aa0cf9d3bdd9d.tar.xz
[views] Restructure profile view, simplify bundle access
Make bundles more like todo lists - the list itself has its own page, accessible from the top user links. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'apps/patchwork/urls.py')
-rw-r--r--apps/patchwork/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/patchwork/urls.py b/apps/patchwork/urls.py
index c969b29..4352db0 100644
--- a/apps/patchwork/urls.py
+++ b/apps/patchwork/urls.py
@@ -36,6 +36,8 @@ urlpatterns = patterns('',
(r'^user/todo/$', 'patchwork.views.user.todo_lists'),
(r'^user/todo/(?P<project_id>[^/]+)/$', 'patchwork.views.user.todo_list'),
+ (r'^user/bundles/$',
+ 'patchwork.views.bundle.bundles'),
(r'^user/bundle/(?P<bundle_id>[^/]+)/$',
'patchwork.views.bundle.bundle'),
(r'^user/bundle/(?P<bundle_id>[^/]+)/mbox/$',