{% extends "base.html" %} {% load static %} {% block content %}

Inbox

New Message
{% if thread_data %}
{% for item in thread_data %}
{{ item.other_user.username }} {% if item.latest_message %} {{ item.latest_message.created_at|date:"M d, Y H:i" }} {% endif %}
{% if item.latest_message %}

{% if item.latest_message.sender == request.user %} You: {% else %} {{ item.other_user.username }}: {% endif %} {{ item.latest_message.body|truncatechars:90 }}

{% else %}

No messages yet.

{% endif %}
{% if item.unread_count > 0 %}
{{ item.unread_count }} unread
{% endif %}
{% endfor %}
{% else %}

You have no conversations yet.

Start a Conversation
{% endif %}
{% endblock %}