Fix breadcrumbs missing on blog tag index

pull/425/head^2
Thibaud Colas 2023-10-02 14:21:15 +01:00
rodzic dae19fec55
commit 0e9ef17a2d
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -188,7 +188,7 @@ class BlogIndexPage(RoutablePageMixin, Page):
return redirect(self.url)
posts = self.get_posts(tag=tag)
context = {"tag": tag, "posts": posts}
context = {"self": self, "tag": tag, "posts": posts}
return render(request, "blog/blog_index_page.html", context)
def serve_preview(self, request, mode_name):