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

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