Simplifies query likely causing author page performance issues

This commit is contained in:
Mouse Reeve 2022-03-17 09:51:54 -07:00
parent 2047365d31
commit a584f077b7

View file

@ -1,7 +1,6 @@
""" the good people stuff! the authors! """
from django.contrib.auth.decorators import login_required, permission_required
from django.core.paginator import Paginator
from django.db.models import Q
from django.shortcuts import get_object_or_404, redirect
from django.template.response import TemplateResponse
from django.utils.decorators import method_decorator
@ -27,7 +26,7 @@ class Author(View):
return ActivitypubResponse(author.to_activity())
books = (
models.Work.objects.filter(Q(authors=author) | Q(editions__authors=author))
models.Work.objects.filter(editions__authors=author)
.order_by("created_date")
.distinct()
)