view 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
line wrap: on
line source

from django.conf.urls.defaults import *

urlpatterns = patterns('hgscm.apps.www.views',
    url(r'^$', 'frontpage', name='frontpage'),
    url(r'^about$', 'about', name='about'),
    url(r'^thepage$', 'thepage', name='thepage'),
)