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