X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/b2d342589a7889a3b096e7192453d53bd28eed7d..2983d583c9de4c33ed73d6c06d9d6eb54b30f15e:/src/catalogue/feeds.py diff --git a/src/catalogue/feeds.py b/src/catalogue/feeds.py index 90088bed8..0b7e4d474 100644 --- a/src/catalogue/feeds.py +++ b/src/catalogue/feeds.py @@ -29,8 +29,8 @@ class AudiobookFeed(Feed): 'daisy': 'WolneLektury.pl - audiobooki w formacie DAISY', } - def get_object(self, request, obj_type): - return {'type': obj_type, 'all': 'all' in request.GET} + def get_object(self, request, type): + return {'type': type, 'all': 'all' in request.GET} def title(self, args): return self.titles[args['type']] @@ -52,17 +52,16 @@ class AudiobookFeed(Feed): return item.name def item_categories(self, item): - return sorted(set(author.name for author in - item.book.tags.filter(category='author').iterator())) + return sorted(item.book.authors().values_list('name', flat=True)) def item_description(self, item): lines = [] artist = item.extra_info.get('artist_name', None) if artist is not None: lines.append(u'Czyta: %s' % artist) - director = item.extra_info.get('artist_name', None) + director = item.extra_info.get('director_name', None) if director is not None: - lines.append(u'Reżyseruje: %s' % director) + lines.append(u'Reżyseria: %s' % director) return u'
\n'.join(lines) def item_link(self, item):