GROUP PERFORMANCE LEADERBOARD

群内 PP 排名 · {{ mode_name }}

参榜 {{ total_count }} 人{% if total_count > 20 %} · 展示 前 20{% endif %}
更新于 {{ updated_at }}
{% if visible %}
{% for player in podium %}{% set place = player.place %}
{{ place }}

{{ player.osu_name }}{% if player.is_self %}{% endif %}

{{ "{:,.1f}".format(player.pp) }} pp
全球 {% if player.global_rank %}#{{ "{:,}".format(player.global_rank) }}{% else %}—{% endif %} · {% if player.delta is none %}暂无历史变化{% elif player.delta > 0 %}较上次 +{{ "{:,.1f}".format(player.delta) }}{% elif player.delta < 0 %}较上次 {{ "{:,.1f}".format(player.delta) }}{% else %}较上次无变化{% endif %}
{% endfor %}
{% if rows or pinned %}
名次玩家表现分全球排名PP 变化
{% macro rank_row(player) -%}
#{{ player.place }}
{{ player.osu_name }}{% if player.is_self %}{% endif %}{% if player.qq_name and player.qq_name != player.osu_name %}{{ player.qq_name }}{% endif %}
{{ "{:,.1f}".format(player.pp) }} pp总表现分
{% if player.global_rank %}#{{ "{:,}".format(player.global_rank) }}{% else %}—{% endif %}全球
{% if player.delta is none %}—{% elif player.delta > 0 %}+{{ "{:,.1f}".format(player.delta) }} pp{% elif player.delta < 0 %}{{ "{:,.1f}".format(player.delta) }} pp{% else %}—{% endif %}
{%- endmacro %} {% for player in rows %}{{ rank_row(player) }}{% endfor %} {% if pinned %}
已省略第 {{ hidden_start }}—{{ hidden_end }} 名
{{ rank_row(pinned) }}{% endif %}
{% endif %} {% else %}
今天还没有可以进入榜单的玩家数据
{% endif %}