{% extends 'Application/' ~ settings.get("theme") ~'/base.html.twig' %} {% block title %}{{ 'Classement par niveau'|trans }}{% endblock %} {% block body %}
| # | {{ '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 %} |
{{"Dernière mise à jour du classement le"|trans}} : {{cacheDate|date('d/m/Y à H:i:s')}}
{% endif %}