Files
django-template-v2/apps/core/views.py
T
2026-09-05 23:43:46 +03:00

8 lines
194 B
Python

from django.shortcuts import render
from django.views.generic import TemplateView, ListView
# Create your views here.
class IndexView(TemplateView):
template_name = "apps/core/index.html"