render_to_response return render_to_response('template1.html',{}) def template_view2(request): from django.shortcuts import render_to_response students = { 'Sarath':22, 'Slynux':34 } return render_to_response('template2.html', {'student_list':students } )