{% extends "global/Page.html" %} {% load otree %} {% block title %}Results{% endblock %} {% block content %}
Round {{ subsession.round_number }}: {% if outcome == -5 %} Option 1 yields an outcome of -5 cents. {% elif outcome == -2 %} Option 2 yields an outcome of -2 cents. {% else %} Option 1 yields an outcome of 0 cents. {% endif %}
{% if tg == 3 %}This amount of money is subtracted from your earnings. Currently, you have {{ current_total }}.
{% elif tg == 4 and history %}History: {% for line in history %} {{ line|safe }} {% endfor %}
{% endif %} {% next_button %} {% endblock %}