thirdparty/google_appengine/lib/django/examples/urls.py
author James Levy <jamesalexanderlevy@gmail.com>
Mon, 25 May 2009 02:23:42 +0200
changeset 2340 f835e39b4dbc
parent 109 620f9b141567
permissions -rwxr-xr-x
Add an EditForm id to the edit form

from django.conf.urls.defaults import *

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