Locatizations.
[wolnelektury.git] / src / funding / templates / funding / includes / offer_status_more.html
1 {% load i18n %}
2
3 {% if offer.is_current %}
4   <p>
5     {% include "funding/snippets/any_remaining.html" %}
6   </p>
7 {% else %}
8   <p class="date">{% trans "Termin zbiórki" %}: {{ offer.start }} – {{ offer.end }}</p>
9   {% if offer.is_win %}
10     <p>
11       {% if offer.book %}
12         {% blocktrans trimmed with bu=offer.book.get_absolute_url bt=offer.book %}
13           Książka <a href="{{ bu }}">{{ bt }}</a> została już opublikowana.
14         {% endblocktrans %}
15       {% else %}
16         {% if offer.redakcja_url %}
17           {% blocktrans trimmed with r=offer.redakcja_url %}
18             Możesz śledzić prace na <a href="{{ r }}">Platformie Redakcyjnej</a>.
19           {% endblocktrans %}
20         {% endif %}
21       {% endif %}
22     </p>
23   {% endif %}
24
25   {% if offer.remaining %}
26     <p>{% include "funding/snippets/any_remaining.html" %}</p>
27   {% endif %}
28 {% endif %}