view_home.py 228 B

12345678910
  1. """Представление домашней страницы."""
  2. from django.views import generic
  3. class Home(generic.TemplateView):
  4. """Домашняя страница."""
  5. template_name: str = 'notes/home.html'