2007-09-17 14:48:33 +00:00
|
|
|
from django.http import HttpResponse
|
|
|
|
from django.template import RequestContext
|
|
|
|
|
|
|
|
def index_page(request):
|
2007-09-19 13:26:56 +00:00
|
|
|
"""Dummy index page"""
|
2007-09-17 14:48:33 +00:00
|
|
|
return HttpResponse('<html><body>Dummy page</body></html>')
|
|
|
|
|