blob: 1ef23c511a53a447855bd30e6ffd923bade2c832 (
plain)
1
2
3
4
5
6
7
|
from django.contrib import auth
from django.http import HttpResponse, HttpResponseRedirect
from django.shortcuts import render_to_response
from django.template import RequestContext
def index(request):
return render_to_response('index.html', {}, context_instance=RequestContext(request))
|