thirdparty/google_appengine/lib/django/examples/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sun, 09 Aug 2009 13:03:47 -0700
changeset 2739 22f41aafcedc
parent 109 620f9b141567
permissions -rwxr-xr-x
Added capability to update a single GradingRecord on the edit page.

from django.conf.urls.defaults import *

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