views.py 220 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 from django.shortcuts import render def adminIndex(request): return render(request, 'admins/adminIndex.html') def adminLogin(request): return render(request, 'admins/adminLogin.html') # Create your views here.