{% extends "global/Page.html" %} {% block title %}Results of Round {{ player.round_number }}{% endblock %} {% block content %}
Thank you for participating this round! Here is the summary about protection during this round combining your choices and those of your fellow participants.
{% if group.total_contribution >= 60 %} Congratulations the community contributed enough to fund the public mitigation measure! {% if player.private_measure == True%} You also purchased the private mitigation measure, so your home is safe with a probability of 95%. {% else %} You did not purchase the private mitigation measure, so your home is safe with a probability of 90%. {% endif %} {% else %} Oh no! Not enough was contributed to fund the public mitigation measure. {% if player.contribution > 0 %} Don't worry though! Your contribution of {{ player.contribution }} has been returned to the value of your home. {% endif %} {% if player.private_measure == True%} You purchased the private mitigation measure, so your home is safe with a probability of 70%. {% else %} You did not purchase the private mitigation measure, so your home is safe with a probability of 40% {% endif %} {% endif %}
You contributed: | {{ player.contribution }} |
Total contribution: | {{ group.total_contribution }} |
Remaining value of your property: | {{ player.payoff }} |
Please click next when you are ready to proceed.
{% next_button %} {% endblock %}