X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0fe31ea9418a81ad0418d0cf91c988a959502e4f..9fa9848eda1f2f714d0c65eee0ffc6b65e1de4cc:/src/club/templates/club/year_summary.html diff --git a/src/club/templates/club/year_summary.html b/src/club/templates/club/year_summary.html new file mode 100644 index 000000000..20ed198e2 --- /dev/null +++ b/src/club/templates/club/year_summary.html @@ -0,0 +1,33 @@ +{% extends request.session.from_app|yesno:"base/app.html,base/base.html" %} +{% load chunks i18n %} + + +{% block titleextra %}Towarzystwo Przyjaciół Wolnych Lektur{% endblock %} + + +{% block body %} +
+

{% blocktrans with year=view.kwargs.year email=object.email %}Summary of donations in the year {{ year }} for the address {{ email }}.{% endblocktrans %}

+ + + + + + + + + + {% for order in payments %} + + + + + {% endfor %} + + + + + +
{% trans "Date" %}{% trans "Amount" %}
{{ order.completed_at.date }}{{ order.get_amount }} zł
{% trans "Total" %}:{{ total_amount|default:0 }} zł
+
+{% endblock %}