{% extends "core/templates/index.jinja" %} {% block content %}
{% include 'titles/diva/templates/diva_header.jinja' %} {% if playlog is defined and playlog is not none %}

Score counts: {{ playlog_count }}

{% set difficultyName = ['easy', 'normal', 'hard', 'extreme', 'extra extreme'] %} {% for record in playlog %}
{{ record.title }}

{{ record.artist }}
{{ difficultyName[record.raw[4]] }}
{% endfor %}
{% set playlog_pages = playlog_count // 20 + 1 %} {% elif sesh is defined and sesh is not none and sesh.user_id > 0 %} No Score information found for this account. {% else %} Login to view profile information. {% endif %}
{% endblock content %}