{{ block title }}
Selling decision
{{ endblock }}
{{ block content }}
{% if player.round_number == 1 %}
You are in stage one. This is round {{player.round_number}} with following parameters.
This is year zero, that is, the base year.
{% endif %}
{% if player.round_number == 2 %}
You are in stage two. This is round {{player.round_number}} with following parameters.
This is year 3, that is, it has been 3 years since the base year.
{% endif %}
{% if player.round_number == 3 %}
You are in stage two. This is round {{player.round_number}} with following parameters.
This is year 3.3, that is, it has been 3 years and 3 months since the base year.
{% endif %}
{% if player.round_number == 4 %}
You are in stage two. This is round {{player.round_number}} with following parameters.
{% endif %}
{% if player.round_number == 5 %}
You are in stage two. This is round {{player.round_number}} with following parameters.
This is year 3.9, that is, it has been 3 years and 9 months since the base year.
{% endif %}
{% if player.round_number == 6 %}
You are in stage two. This is round {{player.round_number}} with following parameters.
This is year 4, that is, it has been 4 years since the base year.
{% endif %}
You have {{avail_vacc}} vaccinated animals
{% if avail_vacc > 0 %}
{% for item in image_range %}
{% endfor %}
{% endif %}
Number of Vaccinated animals |
Payoff from Keeping |
Payoff from Selling |
{% for item, keep, sell in zipped_vacc %}
{{ item }} |
{{keep}} |
{{ sell }} |
{% endfor %}
{% if rp >= 0.5 %}
The risk of infection is {{rp}}.
Based on the risk of infection there is a chance that {{chance}} out of 10 non -vaccinated cows may fall sick.
Or
{{rp_nvacc}} out of {{avail_nvacc}} non -vaccinated cows may fall sick.
Additionally, there is a possibility that one of the sick cows may die.
{% endif %}
{% if rp < 0.5 %}
The risk of infection is {{rp}}.
Based on the risk of infection there is a {{chance}} out of 10 non -vaccinated animals may fall sick.
Or
{{rp_nvacc}} out of {{avail_nvacc}} non -vaccinated cows may fall sick.
{% endif %}
You have {{avail_nvacc}} non vaccinated animals.
{% if avail_nvacc > 0 %}
{% for item in image_range_2 %}
{% endfor %}
{% endif %}
Number of Non-vaccinated animals |
Expected Payoff from Keeping |
Expected Payoff from Selling |
{% for item, keep, sell in zipped_file %}
{{ item }} |
{{ keep }} |
{{ sell }} |
{% endfor %}
{{ formfields }}
{{ next_button }}
{{ endblock }}