{% extends "base.html" %} {% block content %}

JKTV CS2 队伍数据洞察平台

深度挖掘比赛数据,提供战术研判、阵容模拟与多维能力分析。

活跃度 (Activity)

Less More

正在进行 (Live)

Online
{% if live_matches %}
    {% for m in live_matches %}
  • {{ m.map_name }}: {{ m.score_team1 }} - {{ m.score_team2 }}
  • {% endfor %}
{% else %}

暂无正在进行的比赛

{% endif %}

近期战况

    {% for match in recent_matches %}
  • {{ match.map_name }}

    {{ match.start_time | default('Unknown Date') }}

    {{ match.score_team1 }} : {{ match.score_team2 }}
  • {% else %}
  • 暂无比赛数据
  • {% endfor %}
{% endblock %} {% block scripts %} {% endblock %}