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

玩家列表

{% for player in players %}
{% if player.avatar_url %} {{ player.username }} {% else %}
{{ player.username[:2] | upper if player.username else '??' }}
{% endif %}

{{ player.username }}

{{ player.steam_id_64 }}

{{ "%.2f"|format(player.core_avg_rating2 or player.core_avg_rating or 0) }} Rating
{{ "%.2f"|format(player.core_avg_kd or 0) }} K/D
{{ "%.1f"|format((player.core_avg_kast or 0) * 100) }}% KAST
View Profile
{% endfor %}
Total {{ total }} players
{% if page > 1 %} Prev {% endif %} {% if page < total_pages %} Next {% endif %}
{% endblock %}