{% extends 'TdbBaseBundle::layout.html.twig' %} {% import "TdbBaseBundle::macros.html.twig" as macros %} {% block title %}Profil de {{ membre.prenom }} {{ membre.nom }}{% endblock %} {% block body %}
{% if membre.webPath is not null %} Avatar {% else %} Gravatar {% endif %}

{{ membre.prenom }} {{ membre.nom }}

Promo {{ membre.annee }}

{{ ecole }}

Filière {{ filiere }}

{% if is_granted('ROLE_MEMBRE_ADMIN') %}{% endif %}
E-mail{{ membre.email }}
Téléphone{{ membre.telephone }}
Cotisant AE{{ ldapUser.inscritAE ? "Oui" : "Non" }}
{% if is_granted('ROLE_ALLOWED_TO_SWITCH') and not is_granted('ROLE_PREVIOUS_ADMIN') %}Impersonate{% endif %} {% if is_granted('ROLE_MEMBRE_ADMIN') %} Editer Synchroniser depuis le compte INP-net {% elseif membre==app.user %} Modifier mon profil {% endif %} {% if is_granted('ROLE_ADMIN') %}{% endif %} {% if is_granted('ROLE_SUPER_ADMIN') %} Profil LDAP{% endif %}
{% if membre.postes|length>0 %}

Postes

{% for poste in membre.postes %}

{{ poste.name}}

{% endfor %}
{% endif %} {% if membre.prestationsMembre|length>0 %}

Prestations

{% for presta in membre.prestationsMembre %}

{{ presta.getIntitule() }}

{% endfor %}
{% endif %} {% if membre.validTopics|length>0 %}

Topics

{% for topic in membre.validTopics %}

{{ topic.getSubject() }}

{% endfor %}
{% endif %} {% if membre.visibleClips|length>0 %}

Clips

{% for clip in membre.visibleClips %}

{{ clip.name }}

{% endfor %}
{% endif %}
{{ macros.generateTimeline(membre) }}
{% endblock %}