{% extends "global/Page.html" %} {% load staticfiles otree_tags %} {% load staticfiles %} {% block title %} Results page 2 {% endblock %} {% block content %} {% if player.problem_difficulty > group.min_group %} {% if choose_lower > 0 %}
Here's what you would have gotten if you'd chosen a problem of difficulty {{choose_lower}}
| Minimum choice in group | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| {% for lvl in Constants.difficulty_levels %} {% if forloop.counter == group.min_group %} | {{lvl}} {% else %} | {{lvl}} {% endif %} {% endfor %} | ||||||||
| Own choice | {% endif %}{{forloop.counter}} | {% for item in row %} {% if forloop.counter == group.min_group %} {% if forloop.parentloop.counter == choose_lower %}{{item}} | {% elif forloop.parentloop.counter == player.problem_difficulty %}{{item}} | {% else %}{{item}} | {% endif %} {% else %}{{item}} | {% endif %} {% endfor %}|||||
Your actual score is the bold number outlined in a box
{% endif %} {% if choose_higher < 8 %}Here's what you would have gotten if you'd chosen a problem of difficulty {{choose_higher}}
| Minimum choice in group | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| {% for lvl in Constants.difficulty_levels %} {% if forloop.counter == group.min_group %} | {{lvl}} {% else %} | {{lvl}} {% endif %} {% endfor %} | ||||||||
| Own choice | {% endif %}{{forloop.counter}} | {% for item in row %} {% if forloop.counter == group.min_group %} {% if forloop.parentloop.counter == choose_higher %}{{item}} | {% elif forloop.parentloop.counter == player.problem_difficulty %}{{item}} | {% else %}{{item}} | {% endif %} {% else %}{{item}} | {% endif %} {% endfor %}|||||
Your actual score is the bold number outlined in a box
{% endif %} {% if min_higher < 8 %}Here's what you would have gotten if the minimum effort had been {{min_higher}}
| Minimum choice in group | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| {% for lvl in Constants.difficulty_levels %} {% if forloop.counter == min_higher %} | {{lvl}} {% else %} | {{lvl}} {% endif %} {% endfor %} | ||||||||
| Own choice | {% endif %}{{forloop.counter}} | {% for item in row %} {% if forloop.counter == min_higher %} {% if forloop.parentloop.counter == player.problem_difficulty %}{{item}} | {% else %}{{item}} | {% endif %} {% elif forloop.counter == group.min_group and forloop.parentloop.counter == player.problem_difficulty %}{{item}} | {% else %}{{item}} | {% endif %} {% endfor %}|||||
Your actual score is the bold number outlined in a box
{% endif %} {% else %} {% if choose_lower > 0 %}Here's what you would have gotten if you'd chosen a problem of difficulty {{choose_lower}}, which would become the minimum effort.
| Minimum choice in group | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| {% for lvl in Constants.difficulty_levels %} {% if forloop.counter == choose_lower %} | {{lvl}} {% else %} | {{lvl}} {% endif %} {% endfor %} | ||||||||
| Own choice | {% endif %}{{forloop.counter}} | {% for item in row %} {% if forloop.counter == choose_lower %} {% if forloop.parentloop.counter == choose_lower %}{{item}} | {% elif forloop.counter == group.min_group and forloop.parentloop.counter == player.problem_difficulty %}{{item}} | {% else %}{{item}} | {% endif %} {% elif forloop.counter == group.min_group and forloop.parentloop.counter == player.problem_difficulty %}{{item}} | {% else %}{{item}} | {% endif %} {% endfor %}||||
Your actual score is the bold number outlined in a box
{% endif %} {% if choose_higher < 8 %}Here's what you would have gotten if you'd chosen a problem of difficulty {{choose_higher}} and the minimum effort remained at {{group.min_group}}
| Minimum choice in group | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| {% for lvl in Constants.difficulty_levels %} {% if forloop.counter == group.min_group %} | {{lvl}} {% else %} | {{lvl}} {% endif %} {% endfor %} | ||||||||
| Own choice | {% endif %}{{forloop.counter}} | {% for item in row %} {% if forloop.counter == group.min_group %} {% if forloop.parentloop.counter == choose_higher %}{{item}} | {% elif forloop.parentloop.counter == player.problem_difficulty %}{{item}} | {% else %}{{item}} | {% endif %} {% else %}{{item}} | {% endif %} {% endfor %}|||||
Your actual score is the bold number outlined in a box
{% endif %} {% if min_higher < 8 %}Here's what you would have gotten if you'd chosen a problem of difficulty {{choose_higher}} and the minimum effort had been {{min_higher}}
| Minimum choice in group | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| {% for lvl in Constants.difficulty_levels %} {% if forloop.counter == min_higher %} | {{lvl}} {% else %} | {{lvl}} {% endif %} {% endfor %} | ||||||||
| Own choice | {% endif %}{{forloop.counter}} | {% for item in row %} {% if forloop.counter == min_higher %} {% if forloop.parentloop.counter == choose_higher %}{{item}} | {% else %}{{item}} | {% endif %} {% elif forloop.counter == group.min_group and forloop.parentloop.counter == player.problem_difficulty %}{{item}} | {% else %}{{item}} | {% endif %} {% endfor %}|||||
Your actual score is the bold number outlined in a box
{% endif %} {% endif %}