thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 15 Feb 2009 14:57:03 +0000
changeset 1342 f8056a197fb8
parent 109 620f9b141567
permissions -rwxr-xr-x
Add an admin view Makes use of the new admin form and the as_readonly_table tag. Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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