{% 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 %}
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 }}
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 %}
{% endblock content %}