Ticket #2606: views.py

File views.py, 159 bytes (added by Ivan Sagalaev <Maniac@…>, 18 years ago)

tests/regressiontests/templates/views.py

Line 
1# Fake views for testing url reverse lookup
2
3def index(request):
4 pass
5
6def client(request, id):
7 pass
8
9def client_action(request, id, action):
10 pass
Back to Top