{% extends 'base.html.twig' %} {% block title %}AI Actions by {{ agent }}{% endblock %} {% block body %}

Actions by {{ agent }}

← Back to all actions
{% for action in actions %}

{{ action.action }}

{{ action.description }}

{{ action.createdAt|date('Y-m-d H:i:s') }}
{% if action.context %}
{{ action.context|json_encode(constant('JSON_PRETTY_PRINT')) }}
{% endif %}
{% else %}
No actions found for this agent
{% endfor %}
{% endblock %}