Locatizations.
[wolnelektury.git] / src / funding / templates / funding / includes / funding_box.html
1 {% load sorl_thumbnail %}
2
3 <article class="l-books__item" data-pop="-{{ book.popularity.count }}">
4   <figure class="l-books__item__img" style="height:240px">
5     <a href="{{ funding.get_absolute_url }}">
6       {% if funding.cover %}
7         <img src="{{ funding.cover.url }}" alt="{{ funding.title }}">
8       {% endif %}
9     </a>
10   </figure>
11   <div class="l-books__item__actions">
12     <div class="l-checkout__support__bar">
13       {% with funding.basic_info as info %}
14         <span class="{% if info.percentage < 15 %}little-progress{% endif %}" style="width: {{ info.percentage|stringformat:'.2f' }}%;"></span>
15       {% endwith %}
16     </div>
17   </div>
18   <h3>
19       {{ funding.author }}
20   </h3>
21   <h2><a href="{{ funding.get_absolute_url }}">{{ funding.title }}</a></h2>
22 </article>