thirdparty/google_appengine/lib/django/examples/urls.py
author Todd Larsen <tlarsen@google.com>
Thu, 18 Sep 2008 17:32:28 +0000
changeset 162 8ee23f825ba8
parent 109 620f9b141567
permissions -rwxr-xr-x
Swap field value and "required" columns to make more columns for field errors.

from django.conf.urls.defaults import *

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