{% extends 'trosnoth/base.html' %} {% load static %} {% block head %} {{ settings.serverName }} :: Match Report {% endblock %} {% block main %}

{{ settings.serverName }}

Match Report

{% if game.winningTeam == "A" %}
{{ game.blueTeamName }} won
{% elif game.winningTeam == "B" %}
{{ game.redTeamName }} won
{% else %}
Game was drawn
{% endif %} {{ game.started }}
{% if game.scenario %}Scenario: {{ game.scenario }}
{% endif %} Map size: {{ game.zoneCount }} zone{{ game.zoneCount|pluralize }}
Duration: {{ game.gameSeconds|stringformat:".2f" }} second{{ game.gameSeconds|pluralize }}
Blue team: {{ game.blueTeamName }}
Red team: {{ game.redTeamName }}
Version: {{ game.serverVersion }}
{% if tournamentPoints %} Tournament points: {{ tournamentPoints }}
{% endif %} {% if game.replayName %} Download replay {% endif %}
{% if scoreboard %}

Leader Board

{% for row in scoreboard %} {% endfor %}
{{ row.1 }}{{ row.0|floatformat }}
{% endif %}

Player Statistics

General OverviewCoins and TimeKills and Caps

{% for row in playerData %} {% endfor %}
# Nick Kills Deaths KDR Zone Caps Shots Fired Shots Hit Accuracy Coins Used Killed the most: Died the most to: Points
{{ row.rank }} {% if row.player.user.nick %} {{ row.nick }} {% else %} {{ row.nick }} {% endif %} {{ row.player.kills }} kill{{ row.player.kills|pluralize }} {{ row.player.deaths }} death{{ row.player.deaths|pluralize }} {{ row.kdr }} {{ row.player.zoneTags }} cap{{ row.player.zoneTags|pluralize }} {{ row.player.shotsFired }} shot{{ row.player.shotsFired|pluralize }} {{ row.player.shotsHit }} shot{{ row.player.shotsHit|pluralize }} {{ row.accuracy|stringformat:".1f" }}% {{ row.player.coinsUsed }} coin{{ row.player.coinsUsed|pluralize }} {{ row.maxKill }} {{ row.maxDeath }} {{ row.score|stringformat:".1f" }}

{% if killTable %}

Player Kills

{% for row in killTable %} {% endfor %} {% for row in killTable %} {% for value in row.entries %} {% endfor %} {% endfor %} {% if otherKills %} {% for value in otherKills %} {% endfor %} {% endif %}
Killer Killed
{% if row.player.user.nick %} {{ row.nick }} {% else %} {{ row.nick }} {% endif %}
{% if row.player.user.nick %} {{ row.nick }} {% else %} {{ row.nick }} {% endif %} {{ value }}
[Other]{{ value }}

{% endif %} {% if upgradeTable %}

Upgrade Use

{% for upgradeKind in upgrades %} {% endfor %} {% for row in upgradeTable %} {% for value in row.entries %} {% endfor %} {% endfor %}
Player Upgrade
{{ upgradeKind }}
{% if row.player.user.nick %} {{ row.nick }} {% else %} {{ row.nick }} {% endif %} {{ value }}

{% endif %} {% endblock %}