44 lines
780 B
HTML
44 lines
780 B
HTML
{% extends "global/Page.html" %}
|
||
{% load otree %}
|
||
|
||
{% block title %}
|
||
{% endblock %}
|
||
|
||
{% block content %}
|
||
|
||
<div class="card bg-light instructions">
|
||
<div class="card-body">
|
||
|
||
|
||
<h3> Jeu 1 : RESULTAT </h3>
|
||
|
||
|
||
|
||
<p> Le tirage au sort est : {{player.tirageriskresult}}
|
||
</p>
|
||
<p> Votre investissement dans l’actif risqué : {{player.risk11_a}}</p>
|
||
<p> Vous avez gardé : {{player.risk11_b}}</p>
|
||
|
||
<br>
|
||
|
||
<p> Votre gain pour ce jeu est de : {{player.gainrisk}} ECU(s)</p>
|
||
|
||
|
||
<br><br>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
<br> <br>
|
||
<h3>
|
||
Rappel des instructions :
|
||
</h3>
|
||
<div class="card bg-light instructions">
|
||
<div class="card-body">
|
||
|
||
{% include Constants.instructions_GP_template %}
|
||
|
||
</div></div>
|
||
|
||
{% endblock %}
|