{% extends 'Application/' ~ settings.get("theme") ~'/base.html.twig' %} {% block title %}{{ 'Classement par niveau'|trans }}{% endblock %} {% block body %}

{{ 'Classement par niveau'|trans }}

{% if players is defined and players >= 1 %}
{% for player in players %} {% endfor %}
# {{ 'Nom'|trans }} {{ 'Niveau'|trans }} {{ 'Exp'|trans }}
{{ loop.index }} {{ player.name }} {{ player.level }} {% if player.level == settings.get("max_level") %} {{'Niveau max atteint !'|trans}} {% else %} {{ player.exp }}/{{player.expNext }} {% endif %}
{% else %}
{{"Le serveur est hors ligne, le classement est temporairement désactivé."|trans}}
{% endif %} {% if cacheDate is defined %}

{{"Dernière mise à jour du classement le"|trans}} : {{cacheDate|date('d/m/Y à H:i:s')}}

{% endif %}
{% endblock %} {% block javascripts %} {% endblock %}