thirdparty/google_appengine/lib/django/tests/regressiontests/templates/urls.py
author Lennard de Rijk <ljvderijk@gmail.com>
Tue, 14 Jul 2009 18:36:16 +0200
changeset 2648 c6d1c9ccef4a
parent 109 620f9b141567
permissions -rwxr-xr-x
Added button to the GradingRecords overview to send mail when updating projects. Note that this will mail all the projects for which a record is available.

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