You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
459 B
14 lines
459 B
# -*- coding: utf-8 -*-
|
|
from django.core.context_processors import csrf
|
|
from django.shortcuts import render_to_response
|
|
from django.template import RequestContext
|
|
|
|
|
|
def home(request):
|
|
#reg_form = RegistrationFormUniqueEmail()
|
|
#login_form = LoginForm()
|
|
#args = {'reg_form': reg_form, 'login_form': login_form}
|
|
args = {}
|
|
args.update(csrf(request))
|
|
|
|
return render_to_response('index.html', args, context_instance=RequestContext(request)) |