{% extends "botshot/base.html" %} {% block title %}Flows{% endblock %} {% block content %}

{% for flow_name, flow in flows.items %}

{{ flow.name }}

Intent: {{ flow.intent }}

Accepted entities: {{ flow.accepted }}

Unsupported action: {{ flow.unsupported }}

States:

{% for state_name, state in flow.states.items %}

{{state.name}}

Intent
intent
{{ state.intent }}
Action
action
{{ state.action }}
{{ state.get_action_code }}
Temporary
temporary
{{ state.temporary }}
Required entities
requires
{{ state.requires }}
Supported entities
supported
{{ state.supported }}
Unsupported entities
unsupported
{{ state.unsupported }}
{% endfor %}
{% endfor %}
{% endblock %}