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