🏁 CS2 赛果速览

数据源: 5EPlay
{% set ns = namespace(current_date="", current_tournament="") %} {% for match in results %} {% if match.date != ns.current_date or match.tournament != ns.current_tournament %} {% if not loop.first %}
{% endif %}
{{ match.date }} {{ match.tournament }}
{% set ns.current_date = match.date %} {% set ns.current_tournament = match.tournament %} {% endif %}
{{ match.time }}
{{ match.format }}
{{ match.team1.name }}
{{ match.score1 }} : {{ match.score2 }}
{{ match.team2.name }}
胜方
{{ match.winner_name }}
{% endfor %} {% if results %}
{% endif %}