thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Mon, 02 Feb 2009 15:00:43 +0000
changeset 1180 6290c9e49848
parent 109 620f9b141567
permissions -rwxr-xr-x
Fixed club_app The user could not edit their own club app due to a buggy check. Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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