{{ block title }}Resultados de la sesión{{ endblock }} {{ block content }}
Tus ganancias totales durante la sesión han sido de {{ total_points|to2 }} puntos.
A continuación, se muestran los resultados de los períodos seleccionados por el sistema en esta sesión para calcular tu puntuación. Tus datos aparecen en negrita.
{% for player_in_round in player_in_rounds %} {% if player.session.config.show_round_number %}Jugador | Número elegido | Valor ideal | Distancia al ideal | Puntuación inicial | Penalización | Puntuación del período |
---|---|---|---|---|---|---|
{{ p.label }} | {{ p.curr_guess | to2 }} | {{ p.target | to2 }} | {{ p.distance | to2 }} | {{ p.subsession.initial_points | to2}} | {{ p.penalty | to2 }} | {{ p.points | to2 }} |
{{ p.label }} | {{ p.curr_guess | to2 }} | {% if player.session.config.show_info_of_others %} {{ p.target | to2 }} {% endif %} | {% if player.session.config.show_info_of_others %} {{ p.distance | to2 }} {% endif %} | {% if player.session.config.show_info_of_others %} {{ p.subsession.initial_points | to2 }} {% endif %} | {% if player.session.config.show_info_of_others %} {{ p.penalty | to2 }} {% endif %} | {% if player.session.config.show_info_of_others %} {{ p.points | to2 }} {% endif %} |