{% extends "global/Page.html" %} {% load otree %} {% block title %} {% if round_in_session == rounds_per_session %} Final Results - Session {{ session_curr }} {% else %} Results {% endif %} {% endblock %} {% block content %}

{% if same_choice %} Both of you chose to {{ my_decision }}. {% else %} You chose to {{ my_decision }} and the bot chose to {{ opponent_decision }}. {% endif %}

As a result, you earned {{ player.payoff }}.

{% if round_in_session == rounds_per_session %}

Your total payoff at the end of session {{ session_curr }} is {{ my_total_payoff }}.

{% endif %}

{% include Constants.history_template %} {% include Constants.instructions_template %} {% endblock %}