{% extends "global/Page.html" %} {% block title %}Results{% endblock %} {% block content %}
Result summary
You are student {{ player.id_in_group }}
Your score is {{ player.number_JP }}
{% if player.id_in_group == 1 %} {% if player.chosen_betJP == '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 %}Had you applied to school A, You would have been accepted.
{% else %}Had you applied to school A, You would have been rejected.
{% endif %} {% if player in top_guessb1 %}Had you applied to school B, You would have been accepted.
{% else %}Had you applied to school B, You would have been rejected.
{% endif %} {% elif player.id_in_group == 2 %} {% if player.chosen_betJP == '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 %}Had you applied to school A, You would have been accepted.
{% else %}Had you applied to school A, You would have been rejected.
{% endif %} {% if player in top_guessb2 %}Had you applied to school B, You would have been accepted.
{% else %}Had you applied to school B, You would have been rejected.
{% endif %} {% elif player.id_in_group == 3 %} {% if player.chosen_betJP == '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 %}Had you applied to school A, You would have been accepted.
{% else %}Had you applied to school A, You would have been rejected.
{% endif %} {% if player in top_guessb3 %}Had you applied to school B, You would have been accepted.
{% else %}Had you applied to school B, You would have been rejected.
{% endif %} {% elif player.id_in_group == 4 %} {% if player.chosen_betJP == '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 %}Had you applied to school A, You would have been accepted.
{% else %}Had you applied to school A, You would have been rejected.
{% endif %} {% if player in top_guessb4 %}Had you applied to school B, You would have been accepted.
{% else %}Had you applied to school B, You would have been rejected.
{% endif %} {% elif player.id_in_group == 5 %} {% if player.chosen_betJP == '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 %}Had you applied to school A, You would have been accepted.
{% else %}Had you applied to school A, You would have been rejected.
{% endif %} {% if player in top_guessb5 %}Had you applied to school B, You would have been accepted.
{% else %}Had you applied to school B, You would have been rejected.
{% endif %} {% else %} {% if player.chosen_betJP == '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 %}Had you applied to school A, You would have been accepted.
{% else %}Had you applied to school A, You would have been rejected.
{% endif %} {% if player in top_guessb6 %}Had you applied to school B, You would have been accepted.
{% else %}Had you applied to school B, You would have been rejected.
{% endif %} {% endif %} {% next_button %} {% endblock %}