X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/79d770e03bde9d600ec6effdcc9c15487ff23897..46b8dca20c77629901ed4fc3d398436180649c71:/src/catalogue/views.py diff --git a/src/catalogue/views.py b/src/catalogue/views.py index c2636089d..62221855d 100644 --- a/src/catalogue/views.py +++ b/src/catalogue/views.py @@ -616,9 +616,7 @@ def book_mini(request, pk, with_link=True): raise Http404 return render(request, 'catalogue/book_mini_box.html', { 'book': book, - 'author': book.author_unicode(), - 'with_link': with_link, - 'show_lang': book.language_code() != settings.LANGUAGE_CODE, + 'no_link': not with_link, })