thirdparty/google_appengine/lib/django/examples/urls.py
author James Levy <jamesalexanderlevy@gmail.com>
Tue, 25 Aug 2009 15:58:21 +0200 (2009-08-25)
changeset 2798 ec1857f0d0c7
parent 109 620f9b141567
permissions -rwxr-xr-x
Added SurveyRecordForm for viewing a SurveyRecord. This is subclassed into GradeSurveyRecord form for the GradingProjectSurveys. This should replace the need for the read_only kwarg in SurveyTakeForm. A TODO to try and extract this has been added. Fixes Issue 672. Reviewed by: Lennard de Rijk
from django.conf.urls.defaults import *

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