{% extends "competition/rankpoints_base.html" %} {% load i18n %} {% block content %} {% trans "Ranking" as title %}

{{ node|default:title }}

{{ object }}

{{ day|date:"jS F Y" }}

{% for content in node.contents.all %}
{{ content.copy|safe }}
{% endfor %}
{% for match, points, points_decay in table reversed %} {% if match.home_team.club == team.club %} {% else %} {% endif %} {% endfor %}
{% trans "Competition" %} {% trans "Season" %} {% trans "Date" %} {% trans "Opponent" %} {% trans "Points" %}
{{ match.stage.division.season.competition }} {{ match.stage.division.season }} {{ match.date }}{{ match.away_team }}{{ match.home_team }} {% if points_decay != points %}{{ points|stringformat:".1f" }} →{% endif %} {{ points_decay|stringformat:".3f" }}
{% endblock %}