thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Thu, 12 Mar 2009 13:39:57 +0000
changeset 1807 1f8cde169f32
parent 109 620f9b141567
permissions -rwxr-xr-x
Add an export link to all list views Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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