Mercurial > hg-website
comparison 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 |
comparison
equal
deleted
inserted
replaced
64:ab6b463b6038 | 65:57ece5687f92 |
---|---|
1 from django.conf.urls.defaults import * | 1 from django.conf.urls.defaults import * |
2 | 2 |
3 urlpatterns = patterns('hgscm.apps.www.views', | 3 urlpatterns = patterns('hgscm.apps.www.views', |
4 url(r'^$', 'frontpage', name='frontpage'), | 4 url(r'^$', 'frontpage', name='frontpage'), |
5 url(r'^about$', 'about', name='about'), | 5 url(r'^about$', 'about', name='about'), |
6 url(r'^thepage$', 'thepage', name='thepage'), | |
6 ) | 7 ) |