59 lines
951 B
HTML
59 lines
951 B
HTML
{% extends "global/Page.html" %}
|
|
{% load otree %}
|
|
|
|
|
|
{% block title %}
|
|
|
|
|
|
{% if player.id_in_group == 1 %}
|
|
Gain Jeu 2 : Détails
|
|
{% endif %}
|
|
{% if player.id_in_group == 2 %}
|
|
Gain Jeu 1 : Détails
|
|
{% endif %}
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
<div class="card bg-light instructions">
|
|
<div class="card-body">
|
|
|
|
|
|
|
|
<p> Votre choix était : {{ player.choicerisknn }} </p>
|
|
|
|
<p> La couleur sélectionné est : {{ player.colorselectnn }}</p>
|
|
|
|
|
|
<p> Votre gain pour ce jeu est : {{ player.gainrisk }} ECU(s)</p>
|
|
|
|
|
|
<p> Votre gain pour ce jeu est : {{ player.gainriskeur }} ECU(s)</p>
|
|
|
|
<p> ----------------------------------------- </p>
|
|
|
|
<br>
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<br> <br>
|
|
<h3>
|
|
Rappel des instructions :
|
|
</h3>
|
|
<div class="card bg-light instructions">
|
|
<div class="card-body">
|
|
|
|
{% include Constants.instructions_BW_template %}
|
|
|
|
</div></div>
|
|
|
|
{% endblock %}
|
|
|
|
|