Locatizations.
[wolnelektury.git] / src / club / templates / club / year_summary.html
1 {% extends "base_simple.html" %}
2 {% load chunks i18n %}
3
4
5 {% block titleextra %}{% trans "Wolne Lektury potrzebują Twojej pomocy!" %}{% endblock %}
6
7
8 {% block body %}
9   <div class="white-box normal-text">
10     <h1>{% blocktrans trimmed with year=view.kwargs.year email=object.email %}
11       Zestawienie darowizn w roku {{ year }} dla adresu {{ email }}.
12     {% endblocktrans %}</h1>
13
14     <table class="table" border="1">
15       <thead>
16         <tr>
17           <th>{% trans "Data" %}</th>
18           <th>{% trans "Kwota" %}</th>
19         </tr>
20       </thead>
21       <tbody>
22         {% for order in payments %}
23           <tr>
24             <td>{{ order.completed_at.date }}</td>
25             <td>{{ order.get_amount }} zł</td>
26           </tr>
27         {% endfor %}
28         <tr>
29           <th>{% trans "Suma" %}:</th>
30           <th>{{ total_amount|default:0 }} zł</th>
31         </tr>
32       </tbody>
33     </table>
34   </div>
35 {% endblock %}