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

Recent AI Actions

{% for action in actions %}

{{ action.action }}

{{ action.description }}

{% if action.agent %} View all actions by {{ action.agent }} {% endif %}
{{ 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
{% endfor %}
{% endblock %}