{% extends "global/Page.html" %} {% load otree static %} {% block title %} Feedback {% endblock %} {% block content %} {% if is_individual_condition %}

This is session {{player.get_sessnum}} out of 6. You have completed problem {{player.get_probnum}} out of 15 in this session.

You chose {{player.player_choice_final}}. {% if guess1_notblank %} You guessed {{player.guess1}}. {% endif %}

{% if player.player_choice_final == player.correct_match %} Good job! You got it correct and scored {{accuracy_pt}} points. {% else %} Sorry! You were not correct, so you didn't score any points for your answer. {% endif %} You have earned {{points_cum}} points so far. {% else %}

This is session {{player.get_sessnum}} out of 6. You have completed {{player.get_probnum}} problems out of 15 in this session.

You chose {{player.player_choice_final}}, {% if guess1_notblank %} you guessed {{player.guess1}}, {% endif %} and the group chose {{group.group_answer}}.

{% if player.player_choice_final == player.correct_match %} Good job! You got it correct and scored {{accuracy_pt}} points. {% else %} Sorry! You were not correct, so you didn't score any points for your answer. {% endif %} {% if group.group_answer == player.correct_match %} The team got it correct, scoring you {{group_pt}} points. {% else %} The team answer was not correct, so you did not get any points for it. {% endif %} You have earned {{points_cum}} points so far. {% endif %} {{ form.errors }} {% next_button %} {% endblock %}