Show recent galleries on home page

This commit is contained in:
Alexandre Iooss 2021-09-23 09:58:49 +02:00
parent 13f5a446dd
commit bf455989d3
3 changed files with 18 additions and 3 deletions

View file

@ -2,8 +2,11 @@
# SPDX-License-Identifier: GPL-3.0-or-later
from django.contrib.auth.mixins import LoginRequiredMixin
from django.views.generic import TemplateView
from django.views.generic import ListView
from photologue.models import Gallery
class IndexView(LoginRequiredMixin, TemplateView):
class IndexView(LoginRequiredMixin, ListView):
queryset = Gallery.objects.on_site().is_public()
paginate_by = 4
template_name = "index.html"