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

比赛列表

{% for match in matches %} {% endfor %}
时间 地图 比分 时长 操作
{{ match.map_name }} {{ match.score_team1 }} - {{ match.score_team2 }} {{ (match.duration / 60) | int }} min 详情
Total {{ total }} matches
{% if page > 1 %} Prev {% endif %} {% if page < total_pages %} Next {% endif %}
{% endblock %}