from django.http import HttpResponse def index(request): """Simple index page.""" html = '

LabHelper

Admin

' return HttpResponse(html)