{% extends "global/Base.html" %} {% load staticfiles otree_tags %} {% block scripts %} {% endblock %} {% block title %} Practice Period Rankings {% endblock %} {% block content %}
{% if condition > 1 %}

Below are the rankings of the managers in your company, as discussed in the instructions you read previously.

{% if condition == 2 %}
{% for Rank in dollar_rank %} {% endfor %}
Rank Cumulative investment in socially responsible projects
{{ Rank.rank }}. {{ Rank.player_label }}{% if Rank.player_label == player.player_label %} (You){% endif %} ${{ Rank.value|floatformat:2 }}
{% endif %} {% if condition == 3 %}
{% for Rank in impact_rank %} {% endfor %}
Rank Cumulative average impact score of investments
{{ Rank.rank }}. {{ Rank.player_label }}{% if Rank.player_label == player.player_label %} (You){% endif %} {{ Rank.value|floatformat:1 }}
{% endif %} {% if condition == 4 %}
{% for Rank in dollar_rank %} {% endfor %}
Rank Cumulative investment in socially responsible projects
{{ Rank.rank }}. {{ Rank.player_label }}{% if Rank.player_label == player.player_label %} (You){% endif %} ${{ Rank.value|floatformat:2 }}
         {% for Rank in impact_rank %} {% endfor %}
Rank Cumulative average impact score of investments
{{ Rank.rank }}. {{ Rank.player_label }}{% if Rank.player_label == player.player_label %} (You){% endif %} {{ Rank.value|floatformat:1 }}
{% endif %} {% if condition == 5 %}
{% for Rank in return_rank %} {% endfor %}
Rank Cumulative potential return (investment × potential social impact score)
{{ Rank.rank }}. {{ Rank.player_label }}{% if Rank.player_label == player.player_label %} (You){% endif %} ${{ Rank.value|floatformat:2 }}
{% endif %} {% endif %}

Please proceed to the first performance period.



{% next_button %}

A "Next" button will appear momentarily that you may click to continue.

{% endblock %}