mirror of
https://github.com/django/django.git
synced 2024-11-19 16:04:13 +00:00
466871ec1b
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6374 bcc190cf-cafb-0310-a4f2-bffc1f526a37
8 lines
198 B
Python
8 lines
198 B
Python
from django.http import HttpResponse
|
|
from django.template import RequestContext
|
|
|
|
def index_page(request):
|
|
"""Dummy index page"""
|
|
return HttpResponse('<html><body>Dummy page</body></html>')
|
|
|