from django.shortcuts import render # Create your views here. from django.shortcuts import render, redirect from django.views.generic import TemplateView, FormView class IndexView(TemplateView): def get(self, request, *args, **kwargs): return render(request, "index.html", {})