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", {}) class CVView(TemplateView): def get(self, request, *args, **kwargs): return render(request, "cv.html", {}) class LoremView(TemplateView): def get(self, request, *args, **kwargs): return render(request, "lorem.html", {})