{% extends 'leprikon/default.html' %} {% load i18n cms_tags leprikon_tags %} {% block content %}

{% block title %}{% trans 'Summary' %}{% endblock %}

{% static_placeholder "summary" %} {% if payment_status.price > 0 %}

{% blocktrans with school_year=request.school_year %}Payment status for school year {{ school_year }}{% endblocktrans %}

{{ payment_status.title }} ({% trans 'total price of all registrations' %}: {{ payment_status.price | currency }}, {% trans 'discounts' %}: {{ payment_status.discount | currency }}, {% trans 'paid' %}: {{ payment_status.paid | currency }})

{% endif %} {% if new_messages.count %}

{% trans 'New messages' %}

{% include 'leprikon/messages_table.html' with object_list=new_messages %} {% endif %} {% endblock %}