diff options
author | Dan McGee <dan@archlinux.org> | 2010-08-27 16:11:56 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-08-27 17:05:07 -0500 |
commit | e0674de7767a7b2bf9f83f20b2361200e4d8efe0 (patch) | |
tree | 6ae67bec8cb296cf1532f43100efab5a63bcc8bd /urls.py | |
parent | 1cfcf13e1b66950a96d8a729f34108030c48c1cb (diff) |
Add a group details view
This makes the support asked for in FS#19801 a lot more useful since we
actually have an overview page for the entire group.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -50,6 +50,9 @@ urlpatterns = patterns('', (r'^packages/(?P<repo>[A-z0-9\-]+)/(?P<arch>[A-z0-9]+)/(?P<name>[A-z0-9\-+.]+)/download/$', 'packages.views.download'), + (r'^groups/(?P<arch>[A-z0-9]+)/(?P<name>[A-z0-9\-+.]+)/$', + 'packages.views.group_details'), + (r'^todo/(\d+)/$', 'todolists.views.view'), (r'^todo/add/$', 'todolists.views.add'), (r'^todo/edit/(?P<list_id>\d+)/$', 'todolists.views.edit'), |