X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/7cf1f5926f871122e6e240432531ae942c4f9df1..f931a5a3c86e677475ae7f3fc0074b4940bee85c:/wolnelektury/templates/catalogue/book_mini_box.html diff --git a/wolnelektury/templates/catalogue/book_mini_box.html b/wolnelektury/templates/catalogue/book_mini_box.html index 9b61283e7..830c08e27 100755 --- a/wolnelektury/templates/catalogue/book_mini_box.html +++ b/wolnelektury/templates/catalogue/book_mini_box.html @@ -3,17 +3,21 @@ <a href="{{ book.get_absolute_url }}"> {% if book.cover %} <img src=" - {% thumbnail book.cover "216x288" as thumb %} + {% thumbnail book.cover "139x193" as thumb %} {{ thumb.url }} {% empty %} {{ book.cover.url }} {% endthumbnail %} " alt="Cover" /> {% endif %} - {% for author in authors %} - <div class="mono author">{{ author }}</div> - {{ book.title }} - {% endfor %} + <div class="desc"> + <span class="mono author"> + {% for name, url in related.tags.author %} + {{ name }}{% if not forloop.last %}, {% endif %} + {% endfor %} + </span> + <span class="title">{{ book.title }}</span> + </div> </a> </div>