Fundraising in PDF.
[wolnelektury.git] / src / catalogue / templates / catalogue / preview_ad.html
1 {% load i18n %}
2 {% if book %}
3   <div class="l-navigation__menu__book__header">
4     {% if accessible %}
5       <p class='korona'>
6         <strong>{% trans "Prapremiera!" %}</strong>
7         {% trans "Dziękujemy za wsparcie – przeczytaj w prezencie już dzisiaj!" %}
8       </p>
9     {% else %}
10       <p>
11         <strong>{% trans "Prapremiera!" %}</strong>
12         {% trans "Dorzuć się, aby przeczytać." %}
13       </p>
14       <a class="button" href="{% url 'club_join' %}?pk_campaign=menu-preview">{% trans "Dorzuć się" %}</a>
15     {% endif %}
16   </div>
17   <div class="l-navigation__menu__book__info">
18     <h3>
19       {% if book.cover_clean %}
20         <a href="{{ book.get_absolute_url }}" tabindex="-1">
21           <img src="{{ book.cover_clean.url }}" alt="{{ book.pretty_title }}">
22         </a>
23       {% endif %}
24       <a href="{{ book.get_absolute_url }}" tabindex="-1">
25         {% for author in book.authors %}
26           {{ author }}
27         {% endfor %}
28         <strong>
29           {{ book.title }}
30         </strong>
31       </a>
32     </h3>
33     <div>
34       {{ book.abstract|truncatewords_html:20|safe }}
35     </div>
36   </div>
37 {% endif %}