Locatizations.
[wolnelektury.git] / src / funding / templates / funding / includes / funding.html
1 {% load i18n %}
2 {% load time_tags %}
3
4 {% if offer %}
5
6
7   <div class="l-checkout__support">
8     {% if link %}
9       <a href="{% url 'funding_current' offer.slug %}">
10         <span class="buttonlike">{% trans "Wesprzyj!" %}</span>
11         <div class="funding-bar-container">
12     {% endif %}
13     <div class="l-checkout__support__bar">
14       <span class="{% if percentage < 15 %}little-progress{% endif %}" data-label="{% if sum %}{% trans "zebrane" %}: {{ sum }} zł{% endif %}" style="width: {{ percentage|stringformat:'.2f' }}%;"></span>
15     </div>
16     <div class="l-checkout__support__footer">
17       {% if show_title %}
18         <p>
19           {% if show_title_calling %}
20             <strong style="margin-right: .6em;">{% trans "Pomóż uwolnić książkę!" %}</strong>
21           {% endif %}
22           {{ offer }}
23       {% endif %}
24       {% if is_current %}
25         <p>
26           {% trans "do końca zbiórki" %}:
27           <strong class="countdown inline" data-until='{{ offer.end|date_to_utc:True|utc_for_js }}'></strong>
28         </p>
29       {% endif %}
30       {% if not is_win %}
31         <p>
32           {% trans "potrzebujemy" %}: <strong>{{ offer.target }} zł</strong>
33         </p>
34       {% endif %}
35     </div>
36     {% if link %}
37         </div>
38       </a>
39     {% endif %}
40   </div>
41
42 {% endif %}