thirdparty/google_appengine/lib/django/examples/urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Fri, 24 Apr 2009 22:34:31 +0000
changeset 2274 1885cda38bb7
parent 109 620f9b141567
permissions -rwxr-xr-x
Add getStudentsProjects to context in stats.py script. Patch by: Pawel Solyga

from django.conf.urls.defaults import *

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