1 {% extends request.session.from_app|yesno:"base/app.html,base/base.html" %}
5 {% block titleextra %}{% trans "Wolne Lektury need your help!" %}{% endblock %}
9 <div class="white-box normal-text">
10 <h1>{% blocktrans with year=view.kwargs.year email=object.email %}Summary of donations in the year {{ year }} for the address {{ email }}.{% endblocktrans %}</h1>
15 <th>{% trans "Date" %}</th>
16 <th>{% trans "Amount" %}</th>
20 {% for order in payments %}
22 <td>{{ order.completed_at.date }}</td>
23 <td>{{ order.get_amount }} zł</td>
27 <th>{% trans "Total" %}:</th>
28 <th>{{ total_amount|default:0 }} zł</th>