Test_Johanne/exp_e4c_en_p3_risk_binswanger/templates/exp_e4c_en_p3_risk_binswanger/Risk_BinsWanger_result.html

58 lines
942 B
HTML
Raw Permalink Normal View History

2025-03-06 10:28:01 +01:00
{% extends "global/Page.html" %}
{% load otree %}
{% block title %}
{% if player.id_in_group == 1 %}
Gain of game 2 : Details
{% endif %}
{% if player.id_in_group == 2 %}
Gain of game 1 : Details
{% endif %}
{% endblock %}
{% block content %}
<div class="card bg-light instructions">
<div class="card-body">
<p> Your choice was: {{player.choicerisknn}} </p>
<p> The selected color is: {{player.colorselectnn}} </p>
<p> Your winnings for this game are: {{player.gainrisk}} ECU (s) </p>
<p> Your winnings for this game are: {{player.gainriskeur}} ECU (s) </p>
<p> ----------------------------------------- </p>
<br>
</div>
</div>
<br> <br>
<h3>
Reminder of the instructions:
</h3>
<div class="card bg-light instructions">
<div class="card-body">
{% include Constants.instructions_BW_template %}
</div></div>
{% endblock %}