{% extends "base.html" %} {% load staticfiles %} {% block content %} Players beaten by {{ team.teamType }} team {% for member in team.members %} {{ member.name}} {% endfor %} grouped by 1v1 ladder rank. {% with 'wood bronze silver gold platinum diamond master grandmaster' as list %} {% for league in list.split %} {% endfor %} {% endwith %} {% for number in team.wins %}
{{league}} league
{{number}}
{% endfor %}
This team has scored {{ team.victories }} victories in its career, resulting in a total of {{ team.defeated }} players leaving to find another (easier) game.
Arranged team will count each individual team member and add them to the scores. In other words, their team league is not considered, only their 1v1 rank. Beating a 2v2 bronze team consisting of a master league player and a silver league player will cause the master league counter and the silver league counter to both increase by one.
{% endblock %}