{% extends "global/Base.html" %}
{% load staticfiles otree_tags %}

{% block title %}
    Results
{% endblock %}

{% block content %}



    <p>
        {% if same_choice %}
            Both of you chose "{{ my_decision }}".
        {% else %}
            You chose "{{ my_decision }}" and the other participant chose "{{ other_player_decision }}".
        {% endif %}
 </p>

 <tr>
            <td>As a result, you earned</td>
            <td>{{ player.payoff }}.</td>

        </tr>    <table class="table" style="width:400px; margin-top:20px; margin-bottom:10px">
           </p>

    

    {% next_button %}

    {% include 'GSC_low/Instructions.html' %}

{% endblock %}
