plchweb/base_app/views.py
2021-08-16 15:55:33 +02:00

21 lines
541 B
Python

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", {})