view hgscm/apps/www/urls.py @ 26:b3d9cbb33d54

adding basic django project, just renders the frontpage right now
author Jesper Noehr <jesper@noehr.org>
date Sun, 15 Feb 2009 19:58:03 +0100
parents
children 7276388fc71b
line wrap: on
line source

from django.conf.urls.defaults import *

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