{% extends "global/Page.html" %} {% load otree static %} {% load i18n %} {% block title %} {% trans "Results" %} {% endblock %} {% block content %}
{% if language == "fr" %} Partie 2 - Période {{ player.round_number }} sur {{ Constants.num_rounds }} {% else %} Part 2 - Round {{ player.round_number }} over {{ Constants.num_rounds }} {% endif %}

Temps écoulé :

{% if language == "fr" %}

Vous avez extrait {{ player.extraction }} jeton{% if player.extraction > 1 %}s{% endif %} et au total votre groupe a extrait {{ player.group.group_extraction }} jeton{% if player.extraction > 1 %}s{% endif %}.
Votre gain pour la période est de {{ player.payoff|floatformat:2 }} ECUs.

{% else %}

You have extracted {{ player.extraction }} token{% if player.extraction > 1 %}s{% endif %}, and the total amount extracted by your group is {{ player.group.group_extraction }} token{% if player.extraction > 1 %}s{% endif %}.
Your payoff for this round is {{ player.payoff|floatformat:2 }} ECUs.

{% endif %}
{% next_button %}
{% if language == "fr"%}Historique{% else %}History{% endif %}
{% for p in player.in_all_rounds reversed %} {% endfor %}
{% trans "Round" %} {% trans "Your extraction" %} {% trans "Total extraction" %}
{% trans "of the others" %}
{% trans "Total extraction"%}
{% trans "of your group" %}
{% trans "Your payoff" %}
(ECUs)
{% trans "Your cumulative payoff" %}
(ECUs)
{{ p.round_number }} {{ p.extraction }} {{ p.extraction_others }} {{ p.group.group_extraction }} {{ p.payoff|floatformat:2 }} {{ p.cumulative_payoff|floatformat:2 }}
{% include "global/TemplateModal.html" with title="Instructions" content="relations_cpr_game/InstructionsTemplate.html" id="modal_content" %} {% endblock %} {% block scripts %} {% endblock %}