Mercurial > hg-website
annotate hgscm/apps/www/urls.py @ 65:57ece5687f92
Add 'about this page' site
author | David Soria Parra <dsp@php.net> |
---|---|
date | Wed, 18 Feb 2009 05:58:08 +0100 |
parents | 7276388fc71b |
children | bef09338eceb |
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'), |
65 | 6 url(r'^thepage$', 'thepage', name='thepage'), |
45
7276388fc71b
about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents:
26
diff
changeset
|
7 ) |