thirdparty/google_appengine/lib/django/examples/urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Mon, 02 Feb 2009 10:15:07 +0000
changeset 1174 7316a2989134
parent 109 620f9b141567
permissions -rwxr-xr-x
Fix broken Roles public templates. By mistake we used entity.user.public_name instead of entity.user.name. Patch by: Pawel Solyga Reviewed by: to-be-reviewed

from django.conf.urls.defaults import *

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