{% 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] }}
{{ conv.last_message_at[:10] }}
{% else %}
No conversations yet
{% endfor %}
{% if other_user %}
{% for msg in messages %}
{{ msg.message['content'] }}
{{ msg.time_ago }}
{% endfor %}
{% else %}

Select a conversation to start chatting

{% endif %}
{% endblock %}