{% extends 'base.html' %} {% block header %}

{% block title %}Single chart top{% endblock %}

{% endblock %} {% block content %}
模糊查询,只返回第一个 Fuzzy query,and only return the first one.



{% if song_id %}
{{song_id}} {% if difficulty == 0 %} PST {% elif difficulty == 1 %} PRS {% elif difficulty == 2 %} FTR {% else %} BYD {% endif %}
{{song_name_en}}
{% endif %}

{% for post in posts %}
{{'#' ~ post['rank']}} {{post['name']}} UID: {{post['user_id']}}
PURE: {{post['perfect_count']}} {{'(' ~ post['shiny_perfect_count'] ~ ')'}}
FAR: {{post['near_count']}}
LOST: {{post['miss_count']}}
{{post['score']}}
{% if post['clear_type'] == 3 %}Pure Memory {% elif post['clear_type'] == 2 %}Full Recall {% elif post['clear_type'] == 5 %}Hard Clear {% elif post['clear_type'] == 1 %}Normal Clear {% elif post['clear_type'] == 4 %}Easy Clear {% else%}Track Lost {% endif %} {% if post['best_clear_type'] == 3 %}(Pure Memory) {% elif post['best_clear_type'] == 2 %}(Full Recall) {% elif post['best_clear_type'] == 5 %}(Hard Clear) {% elif post['best_clear_type'] == 1 %}(Normal Clear) {% elif post['best_clear_type'] == 4 %}(Easy Clear) {% else%}(Track Lost) {% endif %}
日期 Date: {{post['time_played']}}
{% if not loop.last %}
{% endif %} {% endfor %}
{% endblock %}