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