mirror of
https://github.com/django/django.git
synced 2024-11-19 16:04:13 +00:00
6390155f5c
attempt to verify #8726. Refs #8726. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8766 bcc190cf-cafb-0310-a4f2-bffc1f526a37
14 lines
196 B
Python
14 lines
196 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
|
|
|
|
def client2(request, tag):
|
|
pass
|