X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/b2d342589a7889a3b096e7192453d53bd28eed7d..5767a4cec1018349191a60406a82b6a4d2ae431a:/src/picture/views.py?ds=sidebyside diff --git a/src/picture/views.py b/src/picture/views.py index fea5a5eb2..6b83c3501 100644 --- a/src/picture/views.py +++ b/src/picture/views.py @@ -100,10 +100,9 @@ def import_picture(request): @ssi_included def picture_mini(request, pk, with_link=True): picture = get_object_or_404(Picture, pk=pk) - author_str = ", ".join(tag.name for tag in picture.tags.filter(category='author')) return render(request, 'picture/picture_mini_box.html', { 'picture': picture, - 'author_str': author_str, + 'author': picture.author_unicode(), 'with_link': with_link, })