50 lines
1.5 KiB
HTML
50 lines
1.5 KiB
HTML
<!doctype html>
|
|
<!-- WOV 任务管理页:查看所有任务状态,失败任务可重新排队。 -->
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>WOV 任务管理</title>
|
|
<link rel="stylesheet" href="/assets/styles.css" />
|
|
</head>
|
|
<body>
|
|
<header class="topbar">
|
|
<a class="brand" href="/">WOV</a>
|
|
<nav>
|
|
<a href="/">应用中心</a>
|
|
<a href="/tasks.html">任务管理</a>
|
|
<a href="/admin.html">管理后台</a>
|
|
<a href="/workflow.html">工作流</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main class="container">
|
|
<h1>任务管理</h1>
|
|
<p class="muted">查看所有任务的执行状态;失败的任务可以重新排队执行。</p>
|
|
|
|
<!-- 任务列表由 assets/app.js 的 loadRuns 定期刷新填充。 -->
|
|
<section class="panel">
|
|
<div class="table-wrap">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>任务 ID</th>
|
|
<th>工作流</th>
|
|
<th>状态</th>
|
|
<th>当前节点</th>
|
|
<th>进度</th>
|
|
<th>创建时间</th>
|
|
<th>错误信息</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="runList"></tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<script src="/assets/app.js"></script>
|
|
</body>
|
|
</html>
|