plchweb/base_app/views.py
De Lette cd7691df9e
Delete all.
To create new stuff,
you must first let old stuff go.
2022-10-24 21:34:08 +00:00

13 lines
313 B
Python

from django.shortcuts import render
from django.shortcuts import render, redirect
from django.views.generic import TemplateView, FormView
# Helper functions
# Create your views here.
class IndexView(TemplateView):
def get(self, request, *args, **kwargs):
return render(request, "index.html", {})