30 lines
892 B
HTML
30 lines
892 B
HTML
{% extends "global/Page.html" %}
|
|
{% load otree %}
|
|
|
|
{% block title %}
|
|
Results
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>
|
|
|
|
</p>
|
|
The randomly selected round is: {{round_selected}}
|
|
<br> Your endowment during this round was <b>{{dot1_select}} ECUs</b>.
|
|
<br> The value of <b>S</b> was <b>{{s1_select}}</b>.
|
|
<br> The value of <b>G</b> was <b>{{g1_select}}</b>.
|
|
<br><br> You chose to keep <b>{{keep_select}} </b> POINTs and give <b>{{sent_select}} </b> POINTs to player 2.
|
|
<br><br> Your gain is <b>{{gain_dgm}} POINTs ({{gain_dgm_eur}} EUROs)</b>.
|
|
<br> The player 2 gain is <b>{{gain_joueur2}} POINTs ({{gain_joueur2_eur}} EUROs)</b>.
|
|
<p>
|
|
</p>
|
|
<p>
|
|
</p>
|
|
<p>
|
|
</p>
|
|
|
|
<p>{% next_button %}</p>
|
|
|
|
{% include Constants.instructions_template %}
|
|
|
|
{% endblock %} |