{% extends "global/Page.html" %} {% block title %}Results{% endblock %} {% block content %}

Second Phase

{% for player in group.get_players %} {% if player not in top_a and player not in top_b %} {% endif %} {% endfor %}
Student ID Score
{{ player.id_in_group }} {{player.number }}

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.

{% elif player in top_secondchosen_a %}

Your application is accepted in school A in the second step.

{% elif player in top_secondchosen_b %}

Your application is accepted in school B in the second step.

{% else %}

Your application is rejected in school A

{% endif %} {% else%} {% if player in top_b %}

Your application is accepted in school B.

{% elif player in top_secondchosen_b %}

Your application is accepted in school B in the 2nd step.

{% elif player in top_secondchosen_a %}

Your application is accepted in school A in the second step.

{% 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.

{% elif player in top_secondchosen_a %}

Your application is accepted in school A in the second step.

{% elif player in top_secondchosen_b %}

Your application is accepted in school B in the second step.

{% else %}

Your application is rejected in school A

{% endif %} {% else%} {% if player in top_b %}

Your application is accepted in school B.

{% elif player in top_secondchosen_b %}

Your application is accepted in school B in the 2nd step.

{% elif player in top_secondchosen_a %}

Your application is accepted in school A in the second step.

{% 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.

{% elif player in top_secondchosen_a %}

Your application is accepted in school A in the second step.

{% elif player in top_secondchosen_b %}

Your application is accepted in school B in the second step.

{% else %}

Your application is rejected in school A

{% endif %} {% else%} {% if player in top_b %}

Your application is accepted in school B.

{% elif player in top_secondchosen_b %}

Your application is accepted in school B in the 2nd step.

{% elif player in top_secondchosen_a %}

Your application is accepted in school A in the second step.

{% 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.

{% elif player in top_secondchosen_a %}

Your application is accepted in school A in the second step.

{% elif player in top_secondchosen_b %}

Your application is accepted in school B in the second step.

{% else %}

Your application is rejected in school A

{% endif %} {% else%} {% if player in top_b %}

Your application is accepted in school B.

{% elif player in top_secondchosen_b %}

Your application is accepted in school B in the 2nd step.

{% elif player in top_secondchosen_a %}

Your application is accepted in school A in the second step.

{% 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.

{% elif player in top_secondchosen_a %}

Your application is accepted in school A in the second step.

{% elif player in top_secondchosen_b %}

Your application is accepted in school B in the second step.

{% else %}

Your application is rejected in school A

{% endif %} {% else%} {% if player in top_b %}

Your application is accepted in school B.

{% elif player in top_secondchosen_b %}

Your application is accepted in school B in the 2nd step.

{% elif player in top_secondchosen_a %}

Your application is accepted in school A in the second step.

{% 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.

{% elif player in top_secondchosen_a %}

Your application is accepted in school A in the second step.

{% elif player in top_secondchosen_b %}

Your application is accepted in school B in the second step.

{% else %}

Your application is rejected in school A

{% endif %} {% else%} {% if player in top_b %}

Your application is accepted in school B.

{% elif player in top_secondchosen_b %}

Your application is accepted in school B in the 2nd step.

{% elif player in top_secondchosen_a %}

Your application is accepted in school A in the second step.

{% 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 %}