plchweb/base_app/views.py

18 lines
415 B
Python
Raw Normal View History

2021-07-16 14:11:42 +00:00
from django.shortcuts import render
# Create your views here.
2021-07-19 13:13:27 +00:00
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", {})
2021-07-19 18:56:15 +00:00
class CVView(TemplateView):
def get(self, request, *args, **kwargs):
return render(request, "cv.html", {})
2021-07-19 13:13:27 +00:00