thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Tue, 20 Jan 2009 17:41:47 +0000
changeset 840 d3f9fff0860b
parent 109 620f9b141567
permissions -rwxr-xr-x
When constructing the sidebar don't overide 'sidebar' Instead specify 'sidebar_additional' and include it even if there is a 'sidebar' defined. Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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