thirdparty/google_appengine/lib/django/examples/urls.py
author Madhusudan C.S. <madhusudancs@gmail.com>
Mon, 03 Aug 2009 15:17:21 +0200
changeset 2716 9921ac952f13
parent 109 620f9b141567
permissions -rwxr-xr-x
Added minimum age property to Program model. This will allow hosts to specify a minium age requirement for Students wanting to participate in a program. Reviewed and edited by: Lennard de Rijk

from django.conf.urls.defaults import *

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