thirdparty/google_appengine/lib/django/examples/urls.py
author Todd Larsen <tlarsen@google.com>
Wed, 01 Oct 2008 16:47:00 +0000
changeset 246 5d2df032e19e
parent 109 620f9b141567
permissions -rwxr-xr-x
Shrink the sidebar menu separately from the main body text.

from django.conf.urls.defaults import *

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