archery/views/index.ejs
2025-01-13 01:58:38 -05:00

34 lines
929 B
Plaintext

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<%- include("head", locals) %>
</head>
<body class="preload">
<%- include("navigation", locals) %>
<div class="content">
<h1>Build history</h1>
<table>
<tr>
<th>Repo</th>
<th>Distro</th>
<th>Date Started</th>
<th>Build Duration</th>
<th>Build Status</th>
</tr>
<% builds.forEach(build => { %>
<tr>
<td><a href="/build/<%= build.id %>"><%= build.repo %></a></td>
<td><%= build.distro %></td>
<td><%= build.startTime %></td>
<td>TODO</td>
<td><%= build.status %></td>
</tr>
<% }) %>
</table>
</div>
<%- include("footer", locals) %>
</body>
</html>