55 lines
947 B
HTML
55 lines
947 B
HTML
{% extends "global/Page.html" %}
|
|
{% load otree %}
|
|
|
|
{% block title %}
|
|
Game {{player.game_num}}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
<div class="card bg-light instructions">
|
|
<div class="card-body">
|
|
|
|
<br><br>
|
|
<h3>
|
|
Votre choix :
|
|
</h3>
|
|
|
|
<div class="card bg-light m-3">
|
|
<div class="card-body">
|
|
|
|
<br>
|
|
<p> Please enter the amount of your investment in the project (in ECUs) (an amount between 0 and 10): </p>
|
|
<p> {% formfield player.risk11_a label = ""%}
|
|
</p>
|
|
|
|
<p> So, how many ECUs did you keep (an amount between 0 and 10)? </p>
|
|
<p> {% formfield player.risk11_b label = ""%}
|
|
</p>
|
|
|
|
<p>
|
|
Note: the sum of the two amounts must be equal to 10.
|
|
</p>
|
|
|
|
<br> <br>
|
|
|
|
|
|
{% next_button %}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<br> <br>
|
|
<div class="card bg-light instructions">
|
|
<div class="card-body">
|
|
|
|
{% include Constants.instructions_GP_template %}
|
|
|
|
</div></div>
|
|
|
|
|
|
|
|
{% endblock %} |