3ba0440cea1931cc1c53cfb47b68f02e8f4c9550
[wolnelektury.git] / apps / funding / templates / funding / tags / 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">{{ offer.start }} – {{ offer.end }}</p>
9     {% if offer.is_win %}
10         <p>
11             {% if offer.book %}
12                 {% blocktrans with bu=offer.book.get_absolute_url bt=offer.book %}The book
13                 <a href="{{ bu }}">{{ bt }}</a> has been already published.{% endblocktrans %}
14             {% else %}
15                 {% blocktrans with due=offer.due %}The book
16                 will be published by {{ due }}.{% endblocktrans %}
17                 {% if offer.redakcja_link %}
18                     {% blocktrans with r=offer.redakcja_url %}You can follow
19                     the work on the <a href="{{ r }}">Editorial Platform</a>.{% 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 %}