{% extends "base.html" %} {% block content %}

Execution_Archive / Nexus_Engine

Execution Logs

Total_Executions {{ pagination.pages * 20 }} {# Estimate #}
_VIEW_ALL _SUCCEEDED_ONLY _FAILED_ONLY
{% for run in runs %}
{% if run.status == 'succeeded' %}check_circle{% elif run.status == 'failed' %}warning{% else %}orbit{% endif %}

{{ run.idea_title }}

ID: {{ run.id[:8] }}
{{ run.status }} Mode: {{ run.mode }} {{ run.created_at }}
arrow_forward
{% endfor %} {% if not runs %}

No execution records found matching the active filters.

{% endif %}
{% if pagination.pages > 1 %}
{% if pagination.has_prev %} arrow_back {% endif %}
Page {{ pagination.page }} // {{ pagination.pages }}
{% if pagination.has_next %} arrow_forward {% endif %}
{% endif %} {% endblock %}