django/tests/regressiontests/views/views.py

6 lines
154 B
Python

from django.http import HttpResponse
def index_page(request):
"""Dummy index page"""
return HttpResponse('<html><body>Dummy page</body></html>')