thirdparty/google_appengine/lib/django/examples/urls.py
author Todd Larsen <tlarsen@google.com>
Thu, 18 Sep 2008 17:33:20 +0000
changeset 163 1f67538ff619
parent 109 620f9b141567
permissions -rwxr-xr-x
Add a td.formfielderrorlabel style, to highlight field labels that have errors.

from django.conf.urls.defaults import *

urlpatterns = patterns('',
    (r'^$', 'examples.views.index'),
    (r'^hello/', include('examples.hello.urls')),
)