thirdparty/google_appengine/lib/django/examples/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Thu, 23 Jul 2009 14:43:20 +0200
changeset 2667 260aaea36e49
parent 109 620f9b141567
permissions -rwxr-xr-x
Use role_name to register the Role with the Group View.

from django.conf.urls.defaults import *

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