mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20:17 +02:00
9 lines
273 B
Python
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))
|
|
|