git-svn-id: http://code.djangoproject.com/svn/django/trunk@6370 bcc190cf-cafb-0310-a4f2-bffc1f526a37
13 lines
379 B
Python
13 lines
379 B
Python
from django.http import HttpResponse
|
|
from django.template import RequestContext
|
|
from django.shortcuts import render_to_response
|
|
|
|
def index_page(request):
|
|
""" Dummy index page """
|
|
return HttpResponse('<html><body>Dummy page</body></html>')
|
|
|
|
|
|
def jsi18n_test(request):
|
|
""" View for testing javascript message files """
|
|
return render_to_response('js_i18n.html', {})
|