thirdparty/google_appengine/lib/django/examples/urls.py
author Todd Larsen <tlarsen@google.com>
Thu, 28 Aug 2008 21:30:55 +0000
changeset 113 26d86de67714
parent 109 620f9b141567
permissions -rwxr-xr-x
Helpers for manipulating templates and template search paths. Patch by: Todd Larsen Review by: to-be-reviewed

from django.conf.urls.defaults import *

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