X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/085a24c27a95689480a9efd31821ea4bf461f19b..3d8d1e8e463efe111ed2e2a99861ada52759a1d9:/src/catalogue/views.py?ds=inline diff --git a/src/catalogue/views.py b/src/catalogue/views.py index 3c4a55fe9..d5b83ab08 100644 --- a/src/catalogue/views.py +++ b/src/catalogue/views.py @@ -227,6 +227,7 @@ class TaggedObjectList(BookList): ] if len(self.ctx['tags']) == 1 and self.ctx['main_tag'].category == 'author': self.ctx['translation_list'] = self.ctx['main_tag'].book_set.all() + self.ctx['narrated'] = self.ctx['main_tag'].narrated.all() def get_queryset(self): qs = Book.tagged.with_all(self.ctx['work_tags']).filter(findable=True)