photo26/photo21/views.py
2021-09-23 09:58:49 +02:00

12 lines
383 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 ListView
from photologue.models import Gallery
class IndexView(LoginRequiredMixin, ListView):
queryset = Gallery.objects.on_site().is_public()
paginate_by = 4
template_name = "index.html"