from django.shortcuts import render from django.conf import settings from django.views.decorators.csrf import csrf_exempt from .decorators import login_required # Create your views here. @login_required def cia(request): return render(request, 'cia_index.html')