diff options
author | Dan McGee <dan@archlinux.org> | 2011-01-12 10:08:29 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-01-18 14:26:38 -0600 |
commit | 9cdc536fffc9e77903892c2b14e9462a6ec94ee5 (patch) | |
tree | 9dd56ad147f38867f63c24a3c79bc28e38fc5cd0 /urls.py | |
parent | ecb24ab66a9d0a03ad021d23d4fa543f8163ef3e (diff) |
Add arch-specific group overview pages
This is easy enough to refactor and support with our current infrastructure
and group-fetching functions.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -18,6 +18,7 @@ admin.autodiscover() urlpatterns = patterns('packages.views', (r'^groups/$', 'groups'), + (r'^groups/(?P<arch>[A-z0-9]+)/$', 'groups'), (r'^groups/(?P<arch>[A-z0-9]+)/(?P<name>[A-z0-9\-+.]+)/$', 'group_details'), |