{% extends 'Admin/admin.html.twig' %} {% block title %}{{"Accueil"|trans}} - Administration{% endblock %} {% block body %} {# Stats #}
{{"Joueurs"|trans}}
{% if total_users is not null %} {{total_users}} {% else %}
Server offline
{% endif %}
{{"Personnages"|trans}}
{{total_players}}
{{"Boutique"|trans}}
{{total_shop}}
{{"Article"|trans}}
{{total_news}}
{% if server_info is not null %}
{{"CPS"|trans}}
{{total_news}}
Uptime
{{server_info.uptime|ago}}
{% endif %}
{# /Stats #} {# Graphics et listes #}
{# Playing Time #}
Overall playing time

In total, players have accumulated {{total_playTime|ago}} playing time.

On average, players have accumulated {{moyenne_play|ago}} playing time.

{# /Playing Time #} {# Last Registrer #}
Last registered accounts
{# /Last Register #} {# Online Players #}
Online Players
{% for player in online_players %} {{player.Name}} | Lv.{{player.Level}} | {{player.ClassName}} {% else %}
No player online
{% endfor %}
{# /Online Players #}
{% endblock %}