thirdparty/google_appengine/lib/django/tests/regressiontests/templates/urls.py
author Mario Ferraro <fadinlight@gmail.com>
Sat, 01 Aug 2009 12:31:05 +0100
changeset 2700 40cf7eaa032e
parent 109 620f9b141567
permissions -rwxr-xr-x
Role name for mentors now correctly shown in map's infoWindows.

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