{% extends 'trosnoth/base.html' %} {% block head %} {{ settings.serverName }} :: {{ tournament.name }} {% endblock %} {% block main %}

{{ settings.serverName }}

{{ tournament.name }}

Tournament Match Standings

{% if mainStandings|length == 0 %}

No tournament matches have been played.

{% else %}

Loss=0–5 points, draw=10 points, win=15–20 points

{% for row in mainStandings %}{% endfor %}
Rank Player Score Won / Played
{{ row.rank }} {% if row.user.nick %} {{ row.nick }} {% else %} {{ row.nick }} {% endif %} {{ row.score|stringformat:".1f" }} {{ row.winCount }} / {{ row.playCount }}
{% endif %} {% if hvmStandings %}

Humans vs. Machines Standings

Loss=0–5 points, draw=10 points, win=15–20 points

{% for row in hvmStandings %}{% endfor %}
Rank Team Score Won / Played
{{ row.rank }} {{ row.team }} {{ row.score|stringformat:".1f" }} {{ row.winCount }} / {{ row.playCount }}
{% endif %} {% if noveltyStandings %}

Novelty Game Standings

First place=1 point, other=0 points

{% for row in noveltyStandings %}{% endfor %}
Rank Player Score Best Setting
{{ row.rank }} {% if row.user.nick %} {{ row.nick }} {% else %} {{ row.nick }} {% endif %} {{ row.score|floatformat }} {{ row.bestScenario }}
{% endif %}

Game by Game

{% if gameByGame|length == 0 %}

No matches have been played.

{% else %} {% for row in gameByGame %} #{{ row.game.pk }}: {{ row.game.scenario|default:"Game" }}: {{ row.description }}
{% endfor %} {% endif %}
{% endblock %}