X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/4d9f6719c754615261fc5c63d5a7081e598ed711..0bd6d7d8e87e1d538661b6167d0a5d99428dfc39:/src/catalogue/views.py?ds=sidebyside 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, })