{% extends "django_meta_whatsapp/base.html" %} {% block title %}Responses — {{ flow.name }}{% endblock %} {% block page_title %}Flow Responses{% endblock %} {% block page_subtitle %}

Submissions for {{ flow.name }}

{% endblock %} {% block topbar_actions %} Back to Flow {% endblock %} {% block content %}

{{ total_count }}

Total Submissions

{{ unprocessed_count }}

Unprocessed

{{ flow.sent_count }}

Times Sent

{% for resp in responses %} {% empty %} {% endfor %}
Phone Submitted At Status Response Data Actions

{{ resp.phone_number }}

{% if resp.flow_token %}

token: {{ resp.flow_token|truncatechars:16 }}

{% endif %}
{{ resp.completed_at|date:"M d, Y" }}
{{ resp.completed_at|date:"H:i" }}
{% if resp.processed %} Processed {% else %} New {% endif %}

No responses yet

Send the flow to customers and their submissions will appear here.

Automate response handling with the whatsapp_flow_completed signal in your project:
from django_meta_whatsapp.signals import whatsapp_flow_completed

@receiver(whatsapp_flow_completed)
def handle(sender, response, **kwargs):
    print(response.phone_number, response.response_data)
{% endblock %}