{% 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 %}
| Rank |
Cumulative investment in socially responsible projects |
{% for Rank in dollar_rank %}
| {{ Rank.rank }}. |
{{ Rank.player_label }}{% if Rank.player_label == player.player_label %} (You){% endif %} |
${{ Rank.value|floatformat:2 }} |
{% endfor %}
{% endif %}
{% if condition == 3 %}
| Rank |
Cumulative average impact score of investments |
{% for Rank in impact_rank %}
| {{ Rank.rank }}. |
{{ Rank.player_label }}{% if Rank.player_label == player.player_label %} (You){% endif %} |
{{ Rank.value|floatformat:1 }} |
{% endfor %}
{% endif %}
{% if condition == 4 %}
| Rank |
Cumulative investment in socially responsible projects |
{% for Rank in dollar_rank %}
| {{ Rank.rank }}. |
{{ Rank.player_label }}{% if Rank.player_label == player.player_label %} (You){% endif %} |
${{ Rank.value|floatformat:2 }} |
{% endfor %}
|
|
| Rank |
Cumulative average impact score of investments
|
{% for Rank in impact_rank %}
| {{ Rank.rank }}. |
{{ Rank.player_label }}{% if Rank.player_label == player.player_label %} (You){% endif %} |
{{ Rank.value|floatformat:1 }} |
{% endfor %}
|
{% endif %}
{% if condition == 5 %}
| Rank |
Cumulative potential return (investment × potential social impact score) |
{% for Rank in return_rank %}
| {{ Rank.rank }}. |
{{ Rank.player_label }}{% if Rank.player_label == player.player_label %} (You){% endif %} |
${{ Rank.value|floatformat:2 }} |
{% endfor %}
{% endif %}
{% endif %}
Please proceed to the first performance period.
{% next_button %}
A "Next" button will appear momentarily that you may click to continue.
{% endblock %}