{% trans "Invoice #" %}{{ invoice.id }}
{% if registration %}
{% blocktrans with name=registration.fullName %}
for {{ name }}
{% endblocktrans %}
{% endif %}
{% trans "Date & Time" %}:
{{ invoice.creationDate|date:'DATETIME_FORMAT' }}
{% trans "Net Amount Paid" %}:
{{ invoice.amountPaid }}
{% trans "Price with Discounts" %}:
{{ invoice.total }}
{% trans "Paid Online" %}:
{{ invoice.paidOnline|yesno }}
{% if registration %}
{% trans "Student" %}:
{{ registration.student|yesno }}
{% endif %}
{% if payments %}
{% trans "Payment Details" %}
{% for payment in payments %}
{{ payment.methodName }}: {{ payment.recordId }}
{% if not payment.refundable %}
{% trans "Note" context "alert" %}: {% trans "This payment does not appear to be automatically refundable. Please manually refund the money to this student after filling out this form." %}
{% endif %}
{% endfor %}