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
|