fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
4ef82e125151ee461833b9b0dbff551bf2d52a84
[wolnelektury.git]
/
wolnelektury
/
templates
/
catalogue
/
book_mini_box.html
1
{% load i18n %}
2
<div class="book-mini-box">
3
<a href="{{ book.get_absolute_url }}">
4
<img src="{{ STATIC_URL }}img/cover.png"
5
alt="{% trans "Book cover" %}" />
6
{% for author in authors %}
7
<div class="mono author">{{ author }}</div>
8
{{ book.title }}
9
{% endfor %}
10
</a>
11
</div>
12
13