52 lines
806 B
HTML
52 lines
806 B
HTML
|
{% extends "global/Page.html" %}
|
||
|
{% load otree %}
|
||
|
|
||
|
|
||
|
{% block title %}
|
||
|
|
||
|
Gain of game 1 : Details
|
||
|
|
||
|
|
||
|
{% 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 %}
|
||
|
|
||
|
|