mirror of
https://github.com/django/django.git
synced 2024-11-18 23:44:22 +00:00
0fabbf8ce8
All work done by Ivan Sagalaev. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4494 bcc190cf-cafb-0310-a4f2-bffc1f526a37
11 lines
159 B
Python
11 lines
159 B
Python
# Fake views for testing url reverse lookup
|
|
|
|
def index(request):
|
|
pass
|
|
|
|
def client(request, id):
|
|
pass
|
|
|
|
def client_action(request, id, action):
|
|
pass
|