{% for division, stages in matches_hierarchy.items %}
{{ division.title }}
{% for stage, stage_matches in stages.items %}
{{ stage.title }} ({{ stage_matches|length }})
{% for match in stage_matches %}
{{ match.get_home_team.title }} vs {{ match.get_away_team.title }}
{% if match.label %} {% trans match.label %} {% else %} {% if not match.is_final %} {% with num=match.round %}Round {{ num }}{% endwith %} {% endif %} {% endif %}
{% endfor %}
{% endfor %}
{% endfor %}
 
{% for place in places %}
{{ place.abbreviation|default:place.title }}
{% endfor %}