1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00
Files
django/tests/regressiontests/views/views.py
2007-12-03 17:37:33 +00:00

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>')