{% extends "django_meta_whatsapp/base.html" %} {% block title %}Chat — {{ phone_number }}{% endblock %} {% block page_title %}{{ contact.name|default:phone_number }}{% endblock %} {% block page_subtitle %}

{{ phone_number }}

{% endblock %} {% block topbar_actions %} Back {% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{% for msg in chat_messages %}
{% if msg.reply_to %}
↩ {{ msg.reply_to.message_body|truncatechars:60 }}
{% endif %} {% if msg.is_location %}
{% if msg.location_name %}

{{ msg.location_name }}

{% endif %} {% if msg.location_address %}

{{ msg.location_address }}

{% endif %} Open in Maps
{% elif msg.message_type == 'image' and msg.media_file %} Image {% elif msg.message_type == 'video' and msg.media_file %} {% elif msg.message_type == 'audio' and msg.media_file %} {% elif msg.media_file %} {{ msg.media_filename|default:"Document" }} {% else %}

{% endif %}
{{ msg.timestamp|time:"H:i" }} {% if msg.direction == 'outbound' %} {% if msg.status == 'read' %}✓✓{% elif msg.status == 'delivered' %}✓✓{% else %}✓{% endif %} {% endif %}
{% empty %}

Start the conversation

{% endfor %}
{% csrf_token %}
{% endblock %} {% block extra_js %} {% endblock %}