14 lines
466 B
HTML
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 %}
|