{% extends "global/Page.html" %} {% load otree static %} {% block title %} Feedback {% endblock %} {% comment %} Feedback displayed after each round. {% endcomment %} {% comment %} Feedback shows: randomly drawn numbers (only for debugging!!), number of vaccinated players in group, {% endcomment %} {% comment %} players own decision, possible illness or side effects, remaining fitness points. {% endcomment %} {% block content %}
{% if player.decision == 1%} You decided for vaccination. {%else%} You decided against vaccination. {%endif%}
Your first number is {{player.number1}} and your second number is {{player.number2}}.
In your group {{group.sum_vaccination}} participant(s) has/have vaccinated.
{% if player.decision == 0 and player.ill == True %} You got ill. The severity of your disease was {{player.severity_disease}}. {%elif player.decision == 0%} You did not catch the disease. {%endif%}
{%if player.decision == 1 and player.sideeffect == True%} Your vaccination had sideeffects. The severity of your sideeffects was {{player.severity_sideeffect}}. {%elif player.decision == 1%} Your vaccination had no sideeffects. {%endif%}
Therefore your remaining fitnesspoints are {{player.fitness}} points.
Please click "Next" button to continue.
{% next_button %} {% endblock %}