Test_Johanne/exp_e4c_fr_p3_risk_binswanger/templates/exp_e4c_fr_p3_risk_binswanger/Risk_BinsWanger_result.html
2025-03-06 10:33:03 +01:00

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 %}