thirdparty/google_appengine/lib/django/tests/regressiontests/templates/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Fri, 14 Aug 2009 10:21:09 -0700
changeset 2774 14b51b124ccb
parent 109 620f9b141567
permissions -rwxr-xr-x
Fixed call to get QueryForFields due to changes in r0548101922. The order argument was given as ancestor instead of order.

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),
)