thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 26 Oct 2008 00:13:26 +0000
changeset 418 e035f31d131e
parent 109 620f9b141567
permissions -rwxr-xr-x
Always check if a user filled in a user profile Also, if there is no checks defined, still do the general checks.

from django.conf.urls.defaults import *

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