{# DM conversation thread — chat-style view for a single peer #}
{# Conversation header — peer info #}
{% if conv.peerPhoto %} {{ conv.peerName }} {% else %} {% endif %}
{{ conv.peerName or conv.peerHandle or conv.peerUrl }} {% if conv.peerHandle %} {{ conv.peerHandle }} {% endif %}
🔒
{# Messages in chronological order #}
{% for msg in conv.messages %}
{% if msg.content and msg.content.html %} {{ msg.content.html | safe }} {% elif msg.content and msg.content.text %} {{ msg.content.text }} {% endif %}
{% if msg.published %} {% endif %}
{% endfor %}
{# Inline reply form #}
{% if conv.messages | length %} {% endif %}