<div class="container_user_who_read">
{% for user_who_read in user_list %}
{# Lgnf7jJqniYmij9aMn6xZy for softibox HfzEmaAsjiAViv7goXGsst for reda #}
{% if user_who_read.id != app.user.id and user_who_read.id !="Lgnf7jJqniYmij9aMn6xZy" and user_who_read.id !="HfzEmaAsjiAViv7goXGsst" %}
<div class="container_image_user_who_read user-{{user_who_read.id}}" title="{{user_who_read.fullname}}" style="background-image:url({{vich_uploader_asset(user_who_read, 'picture')}})">
{% if vich_uploader_asset(user_who_read, 'picture')=="" %}
<p>{{user_who_read.firstname|slice(0,1) }}{{user_who_read.lastname|slice(0,1) }}</p>
{% endif %}
</div>
{% endif %}
{% endfor %}
</div>