{% extends "auth.html" %} {% block regular_content %}

{{_('highscores')}}

{{_('highscore_explanation')}}
{% if not public_profile %}
{{_('highscore_no_public_profile')}}
{% endif %} {% if in_class or has_country %}
{% if has_country %} {% endif %} {% if in_class %} {% endif %}
{% endif %}
{% for highscore in highscores %} {% endfor %}
{{_('username')}} {{_('achievements')[0]|upper}}{{_('achievements')[1:]}} {{_('country_title')}} {{_('last_achievement')}}
{{ highscore.ranking }}. {% if not highscore.no_public_profile %} {{highscore.username[0]|upper}}{{highscore.username[1:]}} {% else %} {{highscore.username[0]|upper}}{{highscore.username[1:]}} {% endif %} {{highscore.achievements}} {{get_country(highscore.country)}} {% if not highscore.no_public_profile %} {{_('ago')|replace("{timestamp}", highscore.last_achievement)}} {% else %} - {% endif %}
{% endblock %}