{% extends "base.html" %} {% block title %}Conversation {{ thread.id }} — whatsloon admin{% endblock %} {% block content %}

← All conversations

Conversation with {{ thread.participant }}

Channel
{{ thread.channel }}
Status
{{ thread.status }}
Last activity
{{ thread.last_activity_at }}

Thread ({{ thread.messages | length }})

{% if thread.messages %}
    {% for m in thread.messages %}
  1. {{ m.direction }} {{ m.created_at }} {{ m.status }}
    {{ m.content_text or ("[" + m.message_type + "]") }}
  2. {% endfor %}
{% else %}
No messages in this conversation yet.
{% endif %} {% endblock %}