mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@4503 bcc190cf-cafb-0310-a4f2-bffc1f526a37
11 lines
290 B
Python
11 lines
290 B
Python
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),
|
|
)
|