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

{% block title %}Single player score{% endblock %}

{% endblock %} {% block content %}
or



{% for post in posts %}
{{post['song_id']}} {% if post['difficulty'] == 0 %} PST {% elif post['difficulty'] == 1 %} PRS {% elif post['difficulty'] == 2 %} FTR {% elif post['difficulty'] == 4 %} ETR {% else %} BYD {% endif %} {{'#' ~ post['rank']}}

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 %}
成绩评价 Rating: {{post['rating']}}
日期 Date: {{post['time_played']}}
{% if not loop.last %}
{% endif %} {% endfor %}
{% endblock %}