diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2010-12-31 19:07:29 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2010-12-31 19:07:29 +0000 |
commit | 458e70c504501820ef74f27c71063843cf0c6f2b (patch) | |
tree | de01cb6dc736be2b093a0d01419c276edccd1122 /urls.py | |
parent | c9178286885d60741eb0e696c3e345e3b0dfb9e2 (diff) |
Fixed urls.py
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |