Files
RoleForge/app/templates/task-logs.xhtml
Sergey Antropoff 1d2301fb09 first commit
2026-04-30 08:59:31 +03:00

14 lines
466 B
HTML

{% extends "base.xhtml" %}
{% from "macros/page-hero.xhtml" import page_hero %}
{% block content %}
{{ page_hero("Execution", "Task logs", "Live or replayed log stream for this run with auto-follow and a terminal-style view.") }}
<section class="card">
<h2>Status</h2>
<div id="task-status" data-task-id="{{ task_id }}">connecting...</div>
</section>
<section class="card">
<h2>Logs</h2>
<pre id="task-logs" class="terminal"></pre>
</section>
{% endblock %}