{% extends 'base.html.twig' %} {% block title %}Profil de {{profileusername}} {% endblock %} {% block body %}
{{ profileusername }}

{{ description }}

{% if isPrivate %}

Ce profil est privé.

{% else %}

Ce profil est public.

{% endif %} {% if not me %} {% if not follow %}

S'abonner

{% else %}

Se désabonner

{% endif %} {% endif %}
Abonnements
{% for follow in followersList %} {% endfor %}
Abonnés
{% for sub in subscriptionsList %} {% endfor %}
{% if not privateNotAllowed %}

Messages

{% for msg in messages %}
{{ msg.sender.getUsername() }}
{{ msg.getDate()|date('H:i - d/m/Y') }}

{{ msg.text | striptags('') | raw }}

RT
{% endfor %}
{% endif %} {% endblock %}