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

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

{% static_placeholder "summary" %}

{% trans 'New messages' %}

{% if new_messages.count %} {% include 'leprikon/messages_table.html' with object_list=new_messages %} {% else %}

{% trans 'You have no new messages.' %}

{% endif %}

{% trans 'Registrations and payments overview' %}

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

{% endblock %}