view_note_home.py 236 B

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