{% 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|length > 0 %}
{% if cur_version >= 6 %} {% endif %}
OVERVIEW
{{ profile.userName }}
version: {% if versions | length > 1 %}

You have {{ versions | length }} versions.

{% endif %}
Level: {{ profile.level }}
Rating: {{ profile.playerRating|float/100 }} (highest: {{ profile.highestRating|float/100 }})
Over Power: {{ profile.overPowerPoint|float/100 }}({{ profile.overPowerRate|float/100 }})
Current Point: {{ profile.point }}
Total Point: {{ profile.totalPoint }}
Play Counts: {{ profile.playCount }}
Last Play Date: {{ profile.lastPlayDate }}
Map Icon:
{{ map_icons[profile.mapIconId]["name"] if map_icons|length > 0 else "Server DB needs upgraded or is not populated with necessary data" }}
System Voice:
{{ system_voices[profile.voiceId]["name"] if system_voices|length > 0 else "Server DB needs upgraded or is not populated with necessary data" }}
{% if cur_version >= 6 %}
{% for item in map_icons.values() %} {{ item[ {% endfor %}
{% for item in system_voices.values() %} {{ item[ {% endfor %}
{% endif %}
SCORE
Total High Score: {{ profile.totalHiScore }}
Total Basic High Score: {{ profile.totalBasicHighScore }}
Total Advanced High Score: {{ profile.totalAdvancedHighScore }}
Total Expert High Score: {{ profile.totalExpertHighScore }}
Total Master High Score: {{ profile.totalMasterHighScore }}
Total Ultima High Score : {{ profile.totalUltimaHighScore }}
{% if error is defined %} {% include "core/templates/widgets/err_banner.jinja" %} {% 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 %}
{% if cur_version >= 6 %} {% endif %} {% endblock content %}