Follow up to e1b77238171cc96f4451a06fb4682e2378896238. Backport of 477c800443d091b5f36be9b5f83ce16c85da5879 from master.
28 lines
449 B
Python
28 lines
449 B
Python
# Fake views for testing url reverse lookup
|
|
from django.http import HttpResponse
|
|
from django.template.response import TemplateResponse
|
|
|
|
|
|
def index(request):
|
|
pass
|
|
|
|
|
|
def client(request, id):
|
|
pass
|
|
|
|
|
|
def client_action(request, id, action):
|
|
pass
|
|
|
|
|
|
def client2(request, tag):
|
|
pass
|
|
|
|
|
|
def template_response_view(request):
|
|
return TemplateResponse(request, 'response.html', {})
|
|
|
|
|
|
def snark(request):
|
|
return HttpResponse('Found them!')
|