{% extends "global/Page.html" %} {% load otree static %} {% block title %} Instructions {% endblock %} {% comment %} Instructions about vaccination. {% endcomment %} {% comment %} All numbers are defined constants in models.py. Do not change parameters here, but in models.py {% endcomment %} {% block content %}
In each round you can get vaccinated against the disease. You cannot contract the disease after a vaccination. A vaccination costs you {{Constants.costs_fixed}} fitness points (fixed costs).
Side effects can occur for vaccinated persons. The probability of side effects of vaccination is always {{Constants.prob_sideeffects_100}}%.That means: With a vaccination you lose {{Constants.costs_fixed}} points as fixed costs. In addition, in the event of side effects, you additionally lose {{Constants.costs_sideefects_avg}} fitness points on average, whereby slight side effects (= loss of a few fitness points) are more likely than severe side effects (= loss of many fitness points).
Please click "Next" button to continue.
{% next_button %} {% endblock %}