{% extends "global/Base.html" %}
{% load staticfiles otree %}
{% load i18n %}
{# ****************************************************************************************************************** #}
{# *** STYLES *** #}
{# ****************************************************************************************************************** #}
{% block styles %}
{% endblock %}
{# ****************************************************************************************************************** #}
{# *** TITLE *** #}
{# ****************************************************************************************************************** #}
{% block title %}
{% trans "Results" %}
{% endblock %}
{# ****************************************************************************************************************** #}
{# *** CONTENT *** #}
{# ****************************************************************************************************************** #}
{% block content %}
{% if Constants.num_rounds == 1 %}
{% blocktrans trimmed %}
You chose to collect {{ boxes_collected }} out of {{ boxes_total }} boxes.
{% endblocktrans %}
{% blocktrans trimmed %}
The bomb was hidden behind the box in row {{ bomb_row }}, column {{ bomb_col }}.
{% endblocktrans %}
{% if bomb %}
{% blocktrans trimmed %}
The bomb was among your {{ boxes_collected }} collected boxes.
Accordingly, all your earnings in this task were destroyed and your payoff amounts to {{ payoff }}.
{% endblocktrans %}
{% else %}
{% blocktrans trimmed %}
Your collected boxes did not contain the bomb.
Thus, you receive {{ box_value }} for each of the {{ boxes_collected }} boxes
you collected such that your payoff from this task amounts to {{ payoff }}.
{% endblocktrans %}
{% endif %}
{% else %}
| {% trans "Round No." %} | {% trans "No. of Boxes Collected" %} | {% trans "Bomb Collected" %} | {% trans "Round Payoff" %} |
|---|---|---|---|
| {{ p.subsession.round_number }} | {{ p.boxes_collected }} | {% if p.bomb %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %} | {{ p.round_result }} |