summaryrefslogtreecommitdiff
path: root/tests/regressiontests/views/views.py
blob: 956432e7d50884d325a6e21c9f6692dc3c493c33 (plain)
1
2
3
4
5
from django.http import HttpResponse

def index_page(request):
    """Dummy index page"""
    return HttpResponse('<html><body>Dummy page</body></html>')