thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 02 Nov 2008 22:56:52 +0000
changeset 434 a4fc430fefac
parent 109 620f9b141567
permissions -rwxr-xr-x
Added key field definitions to the User logic This is the first part of making the User views generic.

from django.conf.urls.defaults import *

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