{% set BASE_PAYMENT = "%.2f"|format(participant.base_payment) %}
{% set BONUS = "%.2f"|format(participant.time_credit.get_bonus()) %}
{% set PERFORMANCE_BONUS = "%.2f"|format(participant.performance_bonus) %}
{% trans name="final-page-bonusses" %}In addition to your base payment of {{ currency }}{{ BASE_PAYMENT }}, you will receive a bonus of {{ currency }}{{ BONUS }} for the time you spent on the experiment.{% endtrans %}
{% if participant.performance_bonus > 0.0 %}
{% trans name="final-page-bonusses" %}You have also been awarded a performance bonus of {{ currency }}{{PERFORMANCE_BONUS}}!{% endtrans %}
{% endif %}