thirdparty/google_appengine/lib/django/examples/urls.py
author Todd Larsen <tlarsen@google.com>
Fri, 26 Sep 2008 19:35:21 +0000
changeset 203 187d45783300
parent 109 620f9b141567
permissions -rwxr-xr-x
Add the third-party PolyModel class. This class supports inheritance in Google App Engine Datastore Model classes.

from django.conf.urls.defaults import *

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