{% extends "django_meta_whatsapp/base.html" %} {% block title %}Accounts{% endblock %} {% block page_title %}WhatsApp Accounts{% endblock %} {% block topbar_actions %} Add Account {% endblock %} {% block content %}
{% for account in accounts %} {% empty %} {% endfor %}
Name Phone Number ID WABA ID Status Actions
{{ account.name }} {{ account.phone_number_id }} {{ account.waba_id|default:"—" }} {% if account.is_active %}Active {% else %}Inactive{% endif %}
No accounts configured yet.

Webhook URL for each account:
{{ request.scheme }}://{{ request.get_host }}{% url 'django_meta_whatsapp:webhook' %}

{% endblock %}