thirdparty/google_appengine/lib/django/examples/urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Fri, 22 May 2009 09:40:53 +0200
changeset 2332 2a6071255146
parent 109 620f9b141567
permissions -rwxr-xr-x
Add comment regarding Student Project sorting on Organization home page.

from django.conf.urls.defaults import *

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