{% set chatrooms = __SELF__.chatrooms %} {% if chatrooms is empty %} {{ 'auth.messages_no'|_ }} {% else %} {% for chatroom in chatrooms %} {% if chatroom.message_partner.name or chatroom.message_partner.surname %} {{chatroom.message_partner.name}} {{chatroom.message_partner.surname}} {% else %} {{chatroom.message_partner.email}} {% endif %} {{chatroom.last_message.message}} {% if chatroom.count_unread_messages %} {{chatroom.count_unread_messages}} {% endif %} {% endfor %} {{'account.choose_chat'|_}} {% endif %}