Optimise getting blog posts for a tag
Because we can guarantee there's only 1 `BlogListPage`, the query becomes much simpler
This commit is contained in:
parent
dddecae190
commit
2ae8ec7045
1 changed files with 3 additions and 2 deletions
|
@ -100,8 +100,9 @@ class BlogPostTagPage(BaseContentMixin, BasePage): # type: ignore[misc]
|
||||||
]
|
]
|
||||||
|
|
||||||
def get_blog_posts(self) -> PageQuerySet:
|
def get_blog_posts(self) -> PageQuerySet:
|
||||||
blog_list_page = self.get_parent_pages().specific().reverse()[1]
|
blog_list_page = (
|
||||||
assert isinstance(blog_list_page, BlogListPage)
|
BlogListPage.objects.all().live().get() # type:ignore[attr-defined]
|
||||||
|
)
|
||||||
return blog_list_page.get_blog_posts().filter(tags=self).order_by("-date")
|
return blog_list_page.get_blog_posts().filter(tags=self).order_by("-date")
|
||||||
|
|
||||||
def get_context(self, request: HttpRequest) -> dict:
|
def get_context(self, request: HttpRequest) -> dict:
|
||||||
|
|
Loading…
Reference in a new issue