summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-01-12 10:08:29 -0600
committerDan McGee <dan@archlinux.org>2011-01-18 14:26:38 -0600
commit9cdc536fffc9e77903892c2b14e9462a6ec94ee5 (patch)
tree9dd56ad147f38867f63c24a3c79bc28e38fc5cd0 /urls.py
parentecb24ab66a9d0a03ad021d23d4fa543f8163ef3e (diff)
downloadarchweb-9cdc536fffc9e77903892c2b14e9462a6ec94ee5.tar.gz
archweb-9cdc536fffc9e77903892c2b14e9462a6ec94ee5.zip
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.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/urls.py b/urls.py
index 75f2ae78..b0f58b9f 100644
--- a/urls.py
+++ b/urls.py
@@ -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'),