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

Task {{ task.get("id") or "" }}

{% for row in task_rows %}{% endfor %}
FieldValue
{{ row[0] }}{{ row[1] }}

Timeline

{% if not timeline_steps %}

No timeline records.

{% else %} {% for step in timeline_steps %}

Step {{ step.index }} — {{ step.timestamp }}

Prompt: {{ step.prompt }}

Tool call: {{ step.tool_call_text }}

Result: {{ step.result_text }}

{% if step.screenshot_src %}screenshot{% endif %}
{% endfor %} {% endif %} {% endblock %}