0054956db1b85b42612cc4b419baf2970908c08c
[wolnelektury.git] / src / funding / templates / funding / wlfund.html
1 {% extends "base_simple.html" %}
2 {% load i18n %}
3
4 {% block titleextra %}{% trans "Remaining funds" %}{% endblock %}
5
6 {% block body %}
7   <h1>{% trans "Remaining funds" %}</h1>
8
9   <div class="left-column normal-text">
10     <p>
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.
16       {% endblocktrans %}
17
18       <a href="{% url 'infopage' 'wesprzyj' %}">{% trans "Learn more" %}</a>.
19     </p>
20
21     <p>{% trans "Spending these remaining funds is recorded in this table." %}</p>
22   </div>
23
24   <table class="normal-text wlfund">
25
26     <tr>
27       <td>{% trans "Date" %}:</td>
28       <td>{% trans "Operation" %}:</td>
29       <td>{% trans "Amount" %}:</td>
30       <td>{% trans "Balance" %}:</td>
31     </tr>
32
33     {% for tag, entry in log %}
34       {% if tag == 'spent' %}
35         <tr class="funding-minus">
36           <td class="oneline">{{ entry.timestamp }}</td>
37           <td>
38             {% trans "Money spent on publishing the book" %}:
39             <a href="{{ entry.book.get_absolute_url }}">{{ entry.book }}</a>
40           </td>
41           <td>-{{ entry.amount }}&nbsp;zł</td>
42           <td>{{ entry.total }}&nbsp;zł</td>
43         </tr>
44       {% else %}
45         <tr class="funding-plus">
46           <td class="oneline">{{ entry.end }}</td>
47           <td>
48             {% trans "Money remaining from the fundraiser for" %}:
49             <a href="{{ entry.get_absolute_url }}">{{ entry }}</a>
50           </td>
51           <td>+{{ entry.wlfund }}&nbsp;zł</td>
52           <td>{{ entry.total }}&nbsp;zł</td>
53         </tr>
54       {% endif %}
55     {% empty %}
56       <tr>
57         <td colspan="4" style="text-align:center; color: #888;">
58           <em>{% trans "There are no previous fundraisers to show yet." %}</em>
59         </td>
60       </tr>
61     {% endfor %}
62   </table>
63 {% endblock %}