{% extends "global/Page.html" %}
{% load otree static %}
{# ****************************************************************************************************************** #}
{# *** STYLES *** #}
{# ****************************************************************************************************************** #}
{% block styles %}
{% endblock %}
{% block head_title %}
CRAINICH
{% endblock %}
{% block title %}
{{ form.REPONSE_SEVEN.errors }}
{{ form.BOUTON_STOP.errors }}
{% endblock %}
{% block content %}
{% if player.BOUTON_STOP != 1 %}
|
VOTRE SCORE : {{participant.vars.SCORE}} point(s)
|
|
VOTRE GAIN : {{participant.vars.GAIN_GRILLE}}€
|
Comptez le nombre de 7 dans cette grille :
{% for row in participant.vars.EFFORT_MATRIX %}
{% for col in row %}
| {{ col }} |
{% endfor %}
{% endfor %}
|
VOTRE SCORE : {{participant.vars.SCORE}}
|
|
VOTRE GAIN : {{participant.vars.GAIN_GRILLE}}
|
|
|
|
{% else %}
{% endif %}
{% endblock %}
{% block scripts %}
{% endblock %}