annotate hgscm/apps/www/urls.py @ 45:7276388fc71b

about: integrate about page in django version
author David Soria Parra <dsp@php.net>
date Tue, 17 Feb 2009 12:54:07 +0100
parents b3d9cbb33d54
children 57ece5687f92
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
1 from django.conf.urls.defaults import *
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
2
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
3 urlpatterns = patterns('hgscm.apps.www.views',
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
4 url(r'^$', 'frontpage', name='frontpage'),
45
7276388fc71b about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents: 26
diff changeset
5 url(r'^about$', 'about', name='about'),
7276388fc71b about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents: 26
diff changeset
6 )