{% extends "core/templates/index.jinja" %} {% block content %}
{% include 'titles/chuni/templates/chuni_header.jinja' %} {% if profile is defined and profile is not none and profile.id > 0 %}

Rating: {{ profile.playerRating|float/100 }}    Player Counts: {{ profile.playCount }}

{% if hot_list %}
{% for row in hot_list %} {% endfor %}
Recent 10
Music Difficulty Score Rating
{{ row.title }} {{ row.level }} {{ row.score }} {{ row.song_rating }}
{% else %}

No r10 found

{% endif %} {% if base_list %}
{% for row in base_list %} {% endfor %}
Best 30
Music Difficulty Score Rating
{{ row.title }} {{ row.level }} {{ row.score }} {{ row.song_rating }}
{% else %}

No b30 found

{% endif %}
{% elif sesh is defined and sesh is not none and sesh.user_id > 0 %} No profile information found for this account. {% else %} Login to view profile information. {% endif %}
{% endblock content %}