{% extends 'base.html.twig' %} {% block title %}Profil de {{user.username}}{% endblock %} {% block myTitle %}Profil de {{user.username}}{% endblock %} {% block body %}

{{user.username}}

Inscrit depuis le : {{user.inscription_date}}

Role : {{user.role}}

{% for char in characters %}

{{char.name}}

Classe : {{char.class}}

Spécialisation : {{char.specialization}}

Type de personnage : {% if char.type != 0%} Reroll {% else %} Principal {% endif %}

{% endfor %}
{% endblock %}