{% 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 %}
{% 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 }} |