thirdparty/google_appengine/lib/django/tests/regressiontests/templates/urls.py
author James Levy <jamesalexanderlevy@gmail.com>
Sun, 28 Jun 2009 13:13:58 +0200
changeset 2429 a0a1dd1cc69e
parent 109 620f9b141567
permissions -rwxr-xr-x
Added SurveyRecordModel. Lennard: On top of the orginial patch I've added several comments to the fields and two TODO's for further subclassing. Patch by: James Levy, Daniel Diniz, Lennard de Rijk Reviewed by: Lennard de Rijk

from django.conf.urls.defaults import *
from regressiontests.templates import views

urlpatterns = patterns('',

    # Test urls for testing reverse lookups
    (r'^$', views.index),
    (r'^client/(\d+)/$', views.client),
    (r'^client/(\d+)/(?P<action>[^/]+)/$', views.client_action),
)