Locatizations.
[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       <a href="{{ book.get_absolute_url }}" tabindex="-1">
20         <img src="{{ book.cover_clean.url }}" alt="{{ book.pretty_title }}">
21       </a>
22       <a href="{{ book.get_absolute_url }}" tabindex="-1">
23         {% for author in book.authors %}
24           {{ author }}
25         {% endfor %}
26         <strong>
27           {{ book.title }}
28         </strong>
29       </a>
30     </h3>
31     <div>
32       {{ book.abstract|truncatewords_html:20|safe }}
33     </div>
34   </div>
35 {% endif %}