thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 02 Nov 2008 18:10:30 +0000
changeset 430 e7605c7753b1
parent 109 620f9b141567
permissions -rwxr-xr-x
Create a Site Settings sub-menu

from django.conf.urls.defaults import *

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