thirdparty/google_appengine/lib/django/examples/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sat, 27 Jun 2009 09:36:54 +0200
changeset 2424 51cf7a0c00a4
parent 109 620f9b141567
permissions -rwxr-xr-x
Renamed JavaScript files in templates to match the correct files using prefixes.

from django.conf.urls.defaults import *

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