1 {% extends "2022/base_simple.html" %}
4 {% block titleextra %}{% trans "Remaining funds" %}{% endblock %}
7 <h1>{% trans "Remaining funds" %}</h1>
9 <div class="left-column normal-text">
11 {% blocktrans with r="http://redakcja.wolnelektury.pl/" %}
12 If the full amount needed for publishing a book is not raised in time,
13 the funds are spent on <a href="{{r}}">other books waiting for
14 publication</a>. The same thing happens with any money remaining
15 from successful fundraisers.
18 <a href="{% url 'infopage' 'wesprzyj' %}">{% trans "Learn more" %}</a>.
21 <p>{% trans "Spending these remaining funds is recorded in this table." %}</p>
24 <table class="normal-text wlfund">
27 <td>{% trans "Date" %}:</td>
28 <td>{% trans "Operation" %}:</td>
29 <td>{% trans "Amount" %}:</td>
30 <td>{% trans "Balance" %}:</td>
33 {% for tag, entry in log %}
34 {% if tag == 'spent' %}
35 <tr class="funding-minus">
36 <td class="oneline">{{ entry.timestamp }}</td>
38 {% trans "Money spent on publishing the book" %}:
39 <a href="{{ entry.book.get_absolute_url }}">{{ entry.book }}</a>
41 <td>-{{ entry.amount }} zł</td>
42 <td>{{ entry.total }} zł</td>
45 <tr class="funding-plus">
46 <td class="oneline">{{ entry.end }}</td>
48 {% trans "Money remaining from the fundraiser for" %}:
49 <a href="{{ entry.get_absolute_url }}">{{ entry }}</a>
51 <td>+{{ entry.wlfund }} zł</td>
52 <td>{{ entry.total }} zł</td>
57 <td colspan="4" style="text-align:center; color: #888;">
58 <em>{% trans "There are no previous fundraisers to show yet." %}</em>