{% extends "base.html.twig" %} {% set otherName = otherUser.firstName ~ ' ' ~ otherUser.lastName %} {% if not otherName|trim %} {% set otherName = otherUser.username %} {% endif %} {% set otherAvatar = otherUser.image and not (otherUser.image starts with 'default_profile_pic') ? asset('uploads/profile/img/' ~ otherUser.image) : asset('bundles/syndexacademic/images/default-avatar.png') %} {% block title %}{{ otherName }} — {{ 'chat.messages'|trans({}, 'Chat') }}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block footer %}{% endblock %} {% block body %}
{# Top Bar #}
{# Messages #}
{# Scroll to bottom #} {# Blocked Banner #} {% if conversation.isBlocked %}
{{ 'chat.conversation_blocked'|trans({}, 'Chat') }}
{% endif %} {# Input Area #}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}