{% capture currencySymbol %}{{ 'Global' | Attribute:'CurrencySymbol' }}{% endcapture %}
{% assign registrantCount = Registration.Registrants | Size %}
{{ RegistrationInstance.RegistrationTemplate.RegistrationTerm }} Confirmation: {{ RegistrationInstance.Name }}
The following {{ RegistrationInstance.RegistrationTemplate.RegistrantTerm | PluralizeForQuantity:registrantCount | Downcase }}
{% if registrantCount > 1 %}have{% else %}has{% endif %} been registered for {{ RegistrationInstance.Name }}:
{% for registrant in Registration.Registrants %}
-
{{ registrant.PersonAlias.Person.FullName }}
{% if registrant.Cost > 0 %}
- {{ currencySymbol }}{{ registrant.Cost | Format:'#,##0.00' }}
{% endif %}
{% assign feeCount = registrant.Fees | Size %}
{% if feeCount > 0 %}
{{ RegistrationInstance.RegistrationTemplate.FeeTerm | PluralizeForQuantity:registrantCount }}:
{% for fee in registrant.Fees %}
-
{{ fee.RegistrationTemplateFee.Name }} {{ fee.Option }}
{% if fee.Quantity > 1 %} ({{ fee.Quantity }} @ {{ currencySymbol }}{{ fee.Cost | Format:'#,##0.00' }}){% endif %}: {{ currencySymbol }}{{ fee.TotalCost | Format:'#,##0.00' }}
{% endfor %}
{% endif %}
{% endfor %}
{% if Registration.TotalCost > 0 %}
Total Cost: {{ currencySymbol }}{{ Registration.TotalCost | Format:'#,##0.00' }}
{% if Registration.DiscountedCost != Registration.TotalCost %}
Discounted Cost: {{ currencySymbol }}{{ Registration.DiscountedCost | Format:'#,##0.00' }}
{% endif %}
{% for payment in Registration.Payments %}
Paid {{ currencySymbol }}{{ payment.Amount | Format:'#,##0.00' }} on {{ payment.Transaction.TransactionDateTime| Date:'M/d/yyyy' }}
(Acct #: {{ payment.Transaction.FinancialPaymentDetail.AccountNumberMasked }}, Ref #: {{ payment.Transaction.TransactionCode }})
{% endfor %}
{% assign paymentCount = Registration.Payments | Size %}
{% if paymentCount > 1 %}
Total Paid: {{ currencySymbol }}{{ Registration.TotalPaid | Format:'#,##0.00' }}
{% endif %}
Balance Due: {{ currencySymbol }}{{ Registration.BalanceDue | Format:'#,##0.00' }}
{% endif %}
{{ RegistrationInstance.AdditionalConfirmationDetails }}
If you have any questions please contact {{ RegistrationInstance.ContactPersonAlias.Person.FullName }} at {{ RegistrationInstance.ContactEmail }}.
|
|
---|
|
|
|