End.html
{% extends "global/Page.html" %}

{% block title %}Final Results{% endblock %}
{% block content %}
    <p>
        Thank you for participating in the experiment today! We appreciate your participation. You will be called up
        to collect your final payoff very shortly.
    </p>

    <p>
    Your earnings from the randomly selected round are {{ player.payoff }} and have been converted to US dollars for a value of {{ player.currency_payoff }}.
    </p>
    <p>
    Congratulations! You have also earned {{ player.total_correct_answers }} for correct guesses of other subject's contributions and $5.00 for answering
    the additional questions.
    </p>
    <p>
    Your final earnings are {{ player.total_payoff }} in US dollars.
    </p>



    {% next_button %}

{% endblock %}