33 lines
750 B
HTML
33 lines
750 B
HTML
{% extends "global/Page.html" %}
|
|
{% load otree %}
|
|
|
|
{% block title %}
|
|
Game {{game_num}} - Your Choice - (Round: {{round}})
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
<p>
|
|
Your starting amount is <b>{{dot1}} POINTs</b>.
|
|
<br> The value <b>S</b> is <b>{{s1}}</b>: what you keep for yourself will therefore be multiplied by <b>{{s1}}</b>.
|
|
<br>The value <b>G</b> is <b>{{g1}}</b>: what you give to your partner will therefore be multiplied by <b>{{g1}}</b>.
|
|
|
|
|
|
</p>
|
|
|
|
<p> Out of the <b>{{dot1}} POINTs</b>:
|
|
{% formfield group.keep_amount label="You keep:" %}
|
|
|
|
{% formfield group.sent_amount label="You give to the association:" %}
|
|
</p>
|
|
|
|
|
|
<p>
|
|
{% next_button %}
|
|
</p>
|
|
|
|
{% include Constants.instructions_template %}
|
|
|
|
{% endblock %}
|