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

Messages

{% for conv in conversations %} {{ conv.other_user['username'] }}
{{ conv.other_user['username'] }}
{{ conv.last_message[:60] }}
{{ format_date(conv.last_message_at) }}
{% else %}
No conversations yet
{% endfor %}
{% if other_user %}
{% for msg in messages %}
{{ msg.message['content'] }}
{% if msg.attachments %} {% with attachments=msg.attachments %} {% include "_attachment_display.html" %} {% endwith %} {% endif %} {{ msg.time_ago }}
{% endfor %}
{% else %}

Select a conversation to start chatting

{% endif %}
{% block extra_js %} {% if other_user %} {% endif %} {% endblock %} {% endblock %}