{% extends "django_meta_whatsapp/base.html" %} {% block title %}Blocked Users | Meta WhatsApp{% endblock %} {% block page_title %}Blocked Users{% endblock %} {% block topbar_actions %} Sync from Meta {% endblock %} {% block content %}
{% for bu in blocked_users %} {% empty %} {% endfor %}
Phone Number Status Blocked At Blocked By Reason Actions
{{ bu.phone_number }} {% if bu.is_active %} Blocked {% else %} Unblocked {% endif %} {{ bu.blocked_at|date:"Y-m-d H:i" }} {{ bu.blocked_by|default:"—" }} {{ bu.reason|default:"—" }} {% if bu.is_active %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %}
No blocked users found.
{% if is_paginated %}
{% endif %}
{% endblock %}