photo26/photo21/views.py
2021-09-22 19:32:04 +02:00

8 lines
279 B
Python

# Copyright (C) 2021 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
from django.contrib.auth.mixins import LoginRequiredMixin
from django.views.generic import TemplateView
class IndexView(LoginRequiredMixin, TemplateView):
template_name = "index.html"