{% block sala %} {% set userSala = sala.getDestinatario(userId) %} {% if userSala is not null %} {% set image = userSala.photo ? userSala.photo : asset(sonata_user.defaultAvatar) %} {% endif %} {% if is_granted('ROLE_TRAINER') and sala.denominacion == "My trainer" and userSala is not empty%} {% set salaName = userSala.getNombreCompleto() %} {% elseif sala.denominacion == "Contacto" and userSala is not empty%} {% set salaName = userSala.getNombreCompleto() %} {% else %} {% set salaName = sala.denominacion %} {% endif %}
{% if unreaded is defined and unreaded > 0 %} {{ unreaded }} {% endif %} {% if image is defined %} {% if image is null %} {{ salaName }} {% else %} {{ salaName }} {% endif %} {% else %} {% endif %}
{{ include('dashboard/chat/_sala_element_desc.html.twig', {salaName: salaName, lastMsg:sala.lastMessage}) }}
{% endblock %}