{% extends "base.html" %} {% from "auth/_macros.html" import field %} {% block title %}{{ _('Conversation') }}{% endblock %} {% block content %}
← {{ _('Inbox') }}

{{ conv.listing.title }}

{{ _('with') }} {{ other.display_name }} {% if not reveal %}

{{ _('Phone numbers, emails, and links are hidden until your account is trusted. Verify your email and build trust to unlock contact info.') }}

{% endif %}
{% for msg, body in masked_messages %}
{{ body | replace('\n','
') | safe }}
{{ msg.sender.display_name }} · {{ msg.created_at.strftime('%b %d %H:%M') }} {% if msg.sender_id == current_user.id and msg.is_read %}· {{ _('Read') }}{% endif %}
{% endfor %}
{{ form.hidden_tag() }} {{ field(form.body) }} {{ form.submit(class="btn") }}
{% endblock %}