{% extends 'Admin/admin.html.twig' %} {% block title %}{{"Détail du personnage"|trans}} {{player.Name}}{% endblock %} {% block body %}
{{'Détail du personnage'|trans}}
{% for label, messages in app.flashes %} {% for message in messages %} {% endfor %} {% endfor %}

{{player.Name}}

{% if player.MapName is defined and player.MapName is not null %}

{{"Position"|trans}} {{player.MapName}}

{% endif %} {% if player.PlayTimeSeconds is defined and player.PlayTimeSeconds is not null %}

{{"Temps de jeu"|trans}} : {{player.PlayTimeSeconds|ago}}

{% endif %}
{{player.Vitals[0] * 100 / player.MaxVitals[0]}}%
{{player.Vitals[1] * 100 / player.MaxVitals[1]}}%
{{(player.Exp * 100 / player.ExperienceToNextLevel)|round(1,'floor')}}%

{{"Inventaire"|trans}}

{% for id, qty in inventoryItems %}
Loading
{% endfor %}

{{"Banque"|trans}}

{% for id, qty in bankItems %}
Loading
{% endfor %}

{{"Sac à dos"|trans}}

{% for id, qty in bagItems %}
Loading
{% endfor %}
{% endblock %} {% block javascripts %} {% endblock %}