{% extends "global/Page.html" %} {% load otree static %} {% load i18n %} {% block title %} {% trans "Decision" %} {% 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 pouvez extraire entre 0 et {{ Constants.max_extraction }} jetons. {% else %} You can extract from 0 to {{ Constants.max_extraction }} tokens from the common resource. {% endif %}

{% trans "You extraction" %}

{% trans "The total extraction of the other members of your group" %}

{% if language == "fr" %} Si vous extrayez -- jetons et que les autres membres de votre groupe extraient au total -- jetons alors l'extraction totale du groupe sera de -- jetons, et votre gain sera égal à -- ECUs. {% else %} If you extract -- tokens and the other members of your group extract a total of -- tokens, the total extraction of your group will be -- tokens and your payoff will be equal to -- ECUs. {% endif %}

{% next_button %}
{% if player.round_number > 1 %}
{% if language == "fr"%}Historique{% else %}History{% endif %}
{% for p in player.in_previous_rounds reversed %} {% endfor %}
{% trans "Round" %} {% trans "Your extraction" %} {% trans "Total extraction
of the others" %}
{% trans "Total extraction
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 }}
{% endif %} {% include "global/TemplateModal.html" with title="Instructions" content="relations_cpr_game/InstructionsTemplate.html" id="modal_content" %} {% endblock %} {% block scripts %} {% endblock %}