Home
Download
Documentation
Weblog
Community
Code
Code
Search:
Login
Register
Settings
Wiki
Timeline
Browse Source
Reports
View Tickets
New Ticket
Roadmap
Search
Ticket #2606
: urls.py
File urls.py, 290 bytes (added by Ivan Sagalaev <Maniac@SoftwareManiacs.Org>, 2 years ago)
tests/regressiontests/templates/urls.py
Line
1
from
django.conf.urls.defaults
import
*
2
from
regressiontests.templates
import
views
3
4
urlpatterns
=
patterns
(
''
,
5
6
# Test urls for testing reverse lookups
7
(
r'^$'
,
views
.
index
),
8
(
r'^client/(\d+)/$'
,
views
.
client
),
9
(
r'^client/(\d+)/(?P<action>[^/]+)/$'
,
views
.
client_action
),
10
)
Download in other formats:
Original Format