summaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2010-12-31 19:07:29 +0000
committerParabola <dev@list.parabolagnulinux.org>2010-12-31 19:07:29 +0000
commit458e70c504501820ef74f27c71063843cf0c6f2b (patch)
treede01cb6dc736be2b093a0d01419c276edccd1122 /urls.py
parentc9178286885d60741eb0e696c3e345e3b0dfb9e2 (diff)
Fixed urls.py
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/urls.py b/urls.py
index 9c979d4b..9067c9a0 100644
--- a/urls.py
+++ b/urls.py
@@ -76,10 +76,10 @@ urlpatterns += patterns('public.views',
(r'^about/$', direct_to_template, {'template': 'public/about.html'}, 'page-about'),
(r'^art/$', direct_to_template, {'template': 'public/art.html'}, 'page-art'),
(r'^svn/$', direct_to_template, {'template': 'public/svn.html'}, 'page-svn'),
- (r'^hackers/$', 'public.views.userlist', { 'type':'Hackers' }, 'page-devs'),
- (r'^fellows/$', 'public.views.userlist', { 'type':'Fellows' }, 'page-fellows'),
- (r'^donate/$', 'public.views.donate', {}, 'page-donate'),
- (r'^download/$', 'public.views.download', {}, 'page-download'),
+ (r'^hackers/$', 'userlist', { 'type':'Hackers' }, 'page-devs'),
+ (r'^fellows/$', 'userlist', { 'type':'Fellows' }, 'page-fellows'),
+ (r'^donate/$', 'donate', {}, 'page-donate'),
+ (r'^download/$', 'download', {}, 'page-download'),
)
# Includes and other remaining stuff