37264-vm/core/views.py
Flatlogic Bot d8549d1c4b مناره
2026-01-04 20:53:56 +00:00

16 lines
372 B
Python

from django.shortcuts import render
from django.views.generic import TemplateView
class HomeView(TemplateView):
template_name = "core/index.html"
class AboutView(TemplateView):
template_name = "core/about.html"
class TeachersView(TemplateView):
template_name = "core/teachers.html"
class ContactView(TemplateView):
template_name = "core/contact.html"