Show recent galleries on home page
This commit is contained in:
parent
13f5a446dd
commit
bf455989d3
3 changed files with 18 additions and 3 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue