mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-05 21:31:50 +02:00
5 lines
155 B
Python
5 lines
155 B
Python
from django.views.generic import TemplateView
|
|
|
|
class HomeView(TemplateView):
|
|
"""Page d'accueil de la Chariotte"""
|
|
template_name = "home/home.html"
|