{% extends "django_meta_whatsapp/base.html" %} {% block title %}Inbox{% endblock %} {% block page_title %}Inbox{% endblock %} {% block topbar_actions %} New Contact {% endblock %} {% block content %}
{% for conv in conversations %}
{{ conv.contact.name|default:conv.phone_number|first|upper }}

{{ conv.contact.name|default:conv.phone_number }}

{% if conv.label %}{{ conv.label }}{% endif %}

{{ conv.phone_number }}

{{ conv.last_message_at|timesince }} ago

{% if conv.unread_count %}{{ conv.unread_count }}{% endif %}
{% empty %}

No conversations yet. They'll appear here when customers message you.

{% endfor %}
{% endblock %}