{% extends 'events/management/base.html' %} {% from 'message_box.html' import message_box %} {% block title %} {% trans %}Balances due{% endtrans %} {% endblock %} {% block subtitle %} {{ regform.title }} {% endblock %} {% block content %}
{% if not rows %} {% call message_box('success') %} {% trans %}Nobody owes a balance. Every group member has paid at least what their registration now costs.{% endtrans %} {% endcall %} {% else %} {% call message_box('warning') %} {% trans -%} These people paid before their group was repriced. Indico cannot charge a difference -- a payment is one amount against one registration -- so these balances have to be collected at the desk or by transfer and then recorded against the registration as a manual payment. {%- endtrans %} {% endcall %}| {% trans %}Participant{% endtrans %} | {% trans %}Group{% endtrans %} | {% trans %}Paid{% endtrans %} | {% trans %}Now owes{% endtrans %} | {% trans %}Balance{% endtrans %} |
|---|---|---|---|---|
|
{{ registration.full_name }}
{{ registration.email }}
|
{{ member.group.name }}
{{ member.group.state.title }} ยท
{{ member.group.member_count }} / {{ member.group.target_size }}
|
{{ member.paid_amount | format_currency(registration.currency) }} | {{ registration.render_price() }} | {{ member.balance_due | format_currency(registration.currency) }} |
| {% trans %}Total outstanding{% endtrans %} | {{ total | format_currency(regform.currency) }} | |||