{% load i18n %} {% load common %} {% if stage %}
{% if not forloop.first or not forloop.last %} {% url application.name|add:":stage" competition=competition.slug season=season.slug division=division.slug stage=stage.slug as url1 %} {% url application.name|add:":stage" season=season.slug division=division.slug stage=stage.slug as url2 %} {% url application.name|add:":stage" division=division.slug stage=stage.slug as url3 %}

{{ stage.title }}

{% endif %} {% for pool, summary in pools.items %} {% if summary %} {% block thead %} {% url application.name|add:":pool" competition=competition.slug season=season.slug division=division.slug stage=stage.slug pool=pool.slug as url1 %} {% url application.name|add:":pool" season=season.slug division=division.slug stage=stage.slug pool=pool.slug as url2 %} {% url application.name|add:":pool" division=division.slug stage=stage.slug pool=pool.slug as url3 %} {% if stage.division.bonus_points_formula %} {% endif %} {% endblock %} {% block tbody %} {% for ladder in summary %} {% if stage.division.bonus_points_formula %} {% endif %} {% endfor %} {% endblock %} {% endif %} {% if pool.carry_ladder and summary %} {% endif %}
{% trans pool.title %} {% trans "P" context "ladder: games played" %} {% trans "W" context "ladder: games won" %} {% trans "L" context "ladder: games lost" %} {% trans "D" context "ladder: games drawn" %} {% trans "B" context "ladder: byes" %} {% trans "FW" context "ladder: forfeit wins" %} {% trans "FL" context "ladder: forfeit losses" %} {% trans "+" context "ladder: points score (for)" %} {% trans "-" context "ladder: points conceded (against)" %} {% trans "+/-" context "ladder: difference (for-against)" %} {% trans "%" context "ladder: percentage (for/against*100)" %}{% trans "BP" context "ladder: bonus points" %}{% trans "Pts" context "ladder: points" %}
{% url application.name|add:":team" competition=competition.slug season=season.slug division=division.slug team=ladder.team.slug as url1 %} {% url application.name|add:":team" season=season.slug division=division.slug team=ladder.team.slug as url2 %} {% url application.name|add:":team" division=division.slug team=ladder.team.slug as url3 %} {% trans ladder.team.title %} {{ ladder.played }} {{ ladder.win }} {{ ladder.loss }} {{ ladder.draw }} {{ ladder.bye }} {{ ladder.forfeit_for }} {{ ladder.forfeit_against }} {{ ladder.score_for }} {{ ladder.score_against }} {{ ladder.difference|stringformat:"g" }} {{ ladder.percentage|stringformat:"g"|default:"∞" }}{{ ladder.bonus_points }}{{ ladder.points|stringformat:"g" }}
{% with previous=stage.comes_after %} {% blocktrans %}Matches played in {{ previous }} between teams in this pool contribute to this ladder.{% endblocktrans %} {% endwith %}
{% endfor %}
{% endif %}