12 lines
383 B
Python
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"
|