thirdparty/google_appengine/lib/django/examples/urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Fri, 17 Apr 2009 16:23:01 +0000
changeset 2191 d20557e217dc
parent 109 620f9b141567
permissions -rwxr-xr-x
Proposal CSV export for students. Patch by: Matthew Wilkes Reviewed by: Pawel Solyga

from django.conf.urls.defaults import *

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