{% 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 %} {% trans -%} Until then each of them shows as "awaiting payment", here and in the check-in app, and the online checkout is closed to them so that nobody pays the whole price a second time. {%- 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 }}
|
{{ format_currency(member.paid_amount, registration.currency) }} | {{ registration.render_price() }} | {{ format_currency(member.balance_due, registration.currency) }} |
| {% trans %}Total outstanding{% endtrans %} | {{ format_currency(total, regform.currency) }} | |||