thirdparty/google_appengine/lib/django/examples/urls.py
author Daniel Diniz <ajaksu@gmail.com>
Thu, 02 Jul 2009 18:33:13 +0200
changeset 2495 0113c2de89d3
parent 109 620f9b141567
permissions -rwxr-xr-x
Enable the ProjectSurvey and GradingProjectSurvey views in the core. Also add menu items to the program menu for easy access to these options. Reviewed by: Lennard de Rijk

from django.conf.urls.defaults import *

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