17 lines
415 B
Python
17 lines
415 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", {})
|
|
|
|
|