{% extends "global/Page.html" %} {% block title %}Results{% endblock %} {% block content %}
Result summary
You are student {{ player.id_in_group }}
Your score is {{ player.number }}
{% if player.id_in_group == 1 %} {% if player.chosen_bet == 'A' %} {% if player in top_a %}Your application is accepted in school A.
{% else %}Your application is rejected in school A
{% endif %} {% else%} {% if player in top_b %}Your application is accepted in school B.
{% else %}Your application is rejected in school B
{% endif %} {% endif %}Given your score in this round,
{% if player in top_guessa1 %}You would be accepted if you applied to school A.
{% else %}You would be rejected if you applied to school A.
{% endif %} {% if player in top_guessb1 %}You would be accepted if you applied to school B.
{% else %}You would be rejected if you applied to school B.
{% endif %} {% elif player.id_in_group == 2 %} {% if player.chosen_bet == 'A' %} {% if player in top_a %}Your application is accepted in school A.
{% else %}Your application is rejected in school A
{% endif %} {% else%} {% if player in top_b %}Your application is accepted in school B.
{% else %}Your application is rejected in school B
{% endif %} {% endif %}Given your score in this round,
{% if player in top_guessa2 %}You would be accepted if you applied to school A.
{% else %}You would be rejected if you applied to school A.
{% endif %} {% if player in top_guessb2 %}You would be accepted if you applied to school B.
{% else %}You would be rejected if you applied to school B.
{% endif %} {% elif player.id_in_group == 3 %} {% if player.chosen_bet == 'A' %} {% if player in top_a %}Your application is accepted in school A.
{% else %}Your application is rejected in school A
{% endif %} {% else%} {% if player in top_b %}Your application is accepted in school B.
{% else %}Your application is rejected in school B
{% endif %} {% endif %}Given your score in this round,
{% if player in top_guessa3 %}You would be accepted if you applied to school A.
{% else %}You would be rejected if you applied to school A.
{% endif %} {% if player in top_guessb3 %}You would be accepted if you applied to school B.
{% else %}You would be rejected if you applied to school B.
{% endif %} {% elif player.id_in_group == 4 %} {% if player.chosen_bet == 'A' %} {% if player in top_a %}Your application is accepted in school A.
{% else %}Your application is rejected in school A
{% endif %} {% else%} {% if player in top_b %}Your application is accepted in school B.
{% else %}Your application is rejected in school B
{% endif %} {% endif %}Given your score in this round,
{% if player in top_guessa4 %}You would be accepted if you applied to school A.
{% else %}You would be rejected if you applied to school A.
{% endif %} {% if player in top_guessb4 %}You would be accepted if you applied to school B.
{% else %}You would be rejected if you applied to school B.
{% endif %} {% elif player.id_in_group == 5 %} {% if player.chosen_bet == 'A' %} {% if player in top_a %}Your application is accepted in school A.
{% else %}Your application is rejected in school A
{% endif %} {% else%} {% if player in top_b %}Your application is accepted in school B.
{% else %}Your application is rejected in school B
{% endif %} {% endif %}Given your score in this round,
{% if player in top_guessa5 %}You would be accepted if you applied to school A.
{% else %}You would be rejected if you applied to school A.
{% endif %} {% if player in top_guessb5 %}You would be accepted if you applied to school B.
{% else %}You would be rejected if you applied to school B.
{% endif %} {% else %} {% if player.chosen_bet == 'A' %} {% if player in top_a %}Your application is accepted in school A.
{% else %}Your application is rejected in school A
{% endif %} {% else%} {% if player in top_b %}Your application is accepted in school B.
{% else %}Your application is rejected in school B
{% endif %} {% endif %}Given your score in this round,
{% if player in top_guessa6 %}You would be accepted if you applied to school A.
{% else %}You would be rejected if you applied to school A.
{% endif %} {% if player in top_guessb6 %}You would be accepted if you applied to school B.
{% else %}You would be rejected if you applied to school B.
{% endif %} {% endif %} {% next_button %} {% endblock %}