{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block footer %}{% endblock %} {% block content %}

Messages

{% if other_user %}
{% set _user = other_user %}{% set _size = 32 %}{% set _size_class = "sm" %}{% include "_avatar_link.html" %}

{% set _user = other_user %}{% set _class = none %}{% include "_user_link.html" %}

{% if is_online(other_user) %}online{% elif other_user.get('last_seen') %}last seen {{ dt_ago(other_user['last_seen']) }}{% else %}offline{% endif %}
{% for msg in messages %}
{{ msg.message['content'] }} {% if msg.attachments %} {% with attachments=msg.attachments %} {% include "_attachment_display.html" %} {% endwith %} {% endif %} {{ dt_ago(msg.message['created_at']) if msg.message.get('created_at') else msg.time_ago }} {% if msg.is_mine %}✓✓Read{% endif %} {% set _type = "message" %}{% set _uid = msg.message['uid'] %}{% set _owner = msg.message['sender_uid'] %}{% set _owner_name = "" %}{% set _class = "message-report-btn" %}{% include "_report_button.html" %}
{% endfor %}
{% else %}

Select a conversation to start chatting

{% endif %}
{% endblock %}