allianceauth/portal/views.py
2014-10-03 14:23:53 -07:00

9 lines
273 B
Python

from django.shortcuts import render
from django.shortcuts import render_to_response
from django.template import RequestContext
# Create your views here.
def index(request):
return render_to_response('public/index.html',None, context_instance=RequestContext(request))