{% extends "django_meta_whatsapp/base.html" %} {% block title %}Flows{% endblock %} {% block page_title %}WhatsApp Flows{% endblock %} {% block page_subtitle %}

Create multi-step forms that open natively inside WhatsApp

{% endblock %} {% block topbar_actions %} New Flow {% endblock %} {% block content %}
{% for flow in flows %} {% empty %} {% endfor %}
Name Categories Status Type Sent Completions Actions
{{ flow.name }} {% if flow.meta_flow_id %}

{{ flow.meta_flow_id }}

{% endif %}
{% for cat in flow.categories %} {{ cat }} {% endfor %}
{% if flow.status == 'PUBLISHED' %}{% endif %} {{ flow.get_status_display }} {% if flow.is_dynamic %} Dynamic {% else %} Static {% endif %} {{ flow.sent_count }} {{ flow.completion_count }}
{% if flow.can_publish %}
{% csrf_token %}
{% endif %} {% if flow.can_deprecate %}
{% csrf_token %}
{% endif %}
{% csrf_token %}
{% if flow.can_delete %}
{% csrf_token %}
{% endif %}

No flows yet

Create a flow to collect information from your WhatsApp customers.

Create First Flow
Flow Lifecycle: Create → Upload JSON → Publish → Send to customers. Once published, flows cannot be edited on Meta — use Clone to make a new version.
{% endblock %}