X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/357027375ff8867f42ca34bcbfb5a78b5b185fc3..1ca64302e8447c9715ab42dd1a33075f312e6059:/src/catalogue/feeds.py diff --git a/src/catalogue/feeds.py b/src/catalogue/feeds.py index 2411d015a..2a65c592b 100644 --- a/src/catalogue/feeds.py +++ b/src/catalogue/feeds.py @@ -8,6 +8,7 @@ from django.core.urlresolvers import reverse from catalogue import models + def absolute_url(url): return "http://%s%s" % (Site.objects.get_current().domain, url) @@ -52,16 +53,16 @@ class AudiobookFeed(Feed): def item_categories(self, item): return sorted(set(author.name for author in - item.book.tags.filter(category='author').iterator())) + item.book.tags.filter(category='author').iterator())) 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):