{% extends "django_meta_whatsapp/base.html" %} {% block title %}Contacts{% endblock %} {% block page_title %}Contacts{% endblock %} {% block topbar_actions %} Import CSV Export Add Contact {% endblock %} {% block content %}
{% for contact in contacts %} {% empty %} {% endfor %}
Contact Phone Email Tags Status Actions
{{ contact.name|default:contact.phone|first|upper }}
{{ contact.name|default:"—" }}
{{ contact.phone }} {{ contact.email|default:"—" }} {% for tag in contact.tags %}{{ tag }}{% endfor %} {% if contact.opted_out %}Opted out {% else %}Active{% endif %}
No contacts found
{% if is_paginated %}

Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}

{% if page_obj.has_previous %}← Prev{% endif %} {% if page_obj.has_next %}Next →{% endif %}
{% endif %}
{% endblock %}