📅 CS2 职业赛程预告

数据源: 5EPlay
{% set ns = namespace(current_date="", current_tournament="") %} {% for match in matches %} {% 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 }}
{% set clean_status = match.status.replace('赛前分析', '').strip() %} {% if clean_status %}
{{ clean_status }}
{% endif %}
{% endfor %} {% if matches %}
{% endif %}