{% if calls %}
Call ID |
Arguments |
Actions |
{% for call in calls %}
{% if call and call.call_id %}
{{ call.call_id.split('#')[-1][:8] if '#' in
call.call_id else call.call_id[:8] }}...
{% else %}
Invalid ID
{% endif %}
|
{% if call and call.serialized_arguments %}
{% else %}
No arguments
{% endif %}
|
{% if call and call.call_id %}
Details
{% else %}
{% endif %}
|
{% if call and call.serialized_arguments %}
{% with args=call.serialized_arguments,
id_prefix='task-call-'~loop.index %} {% include
"partials/formatted_arguments.html" %} {% endwith %}
|
{% endif %} {% endfor %}
{% else %}
No active calls for this task.
{% endif %}