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

{{ description }}

{# Affichage du status du profil #} {% if isPrivate %}

Ce profil est privé.

{% else %}

Ce profil est public.

{% endif %} {# Si ce n'est pas son profil, affichage du status d'abonnement #} {% if not me %} {% if not follow %}

S'abonner

{% else %}

Se désabonner

{% endif %} {% endif %}
Abonnés
{# Affichage des abonnés #} {% for follow in followersList %} {% endfor %}
Abonnements
{# Affichage des abonnements #} {% for sub in subscriptionsList %} {% endfor %}
{# Si le profil est public il peut voir les messages sinon il faut qu'il soit abonné #} {% if not privateNotAllowed %}

Messages

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

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

Répondre RT
{% endfor %}
{% endif %} {% endblock %}