{% extends "base.html" %} {% block title %}{{ t('leaderboard') }} — {{ t('brand') }}{% endblock %} {% block content %}

{{ t('leaderboard') }}

{% for g in games %} {{ g.name }} {% endfor %}
{% if game %}
{{ t('minimum_hours') }} · {{ t('minimum_month') }}
{% for e in entries[:30] %} {% else %} {% endfor %}
#{{ t('player_username') }} {{ t('matches_played') }}{{ t('wins') }}{{ t('losses') }} {{ t('win_rate') }}{{ t('play_time') }}{{ t('eligible') }}
{{ e.rank }} {{ e.user.display_name if e.user else 'N/A' }} {{ e.matches_played or 0 }} {{ e.wins or 0 }} {{ e.losses or 0 }} {{ e.win_rate }}% {{ e.play_time_hours }}h {{ 'Y' if e.qualified else 'N' }}
{{ t('no_data') }}
{% else %}
{{ t('select_game_first') }}
{% endif %} {% endblock %}