aktaliosieren

This commit is contained in:
ChK
2026-03-11 08:27:05 +01:00
parent 68c2db11d0
commit 98c2485f88
8 changed files with 448 additions and 5 deletions

View File

@@ -12,16 +12,23 @@
<th>Name</th>
<th>Status</th>
<th>Last Run</th>
<th>Action</th>
</tr>
<% checks.forEach(c => { %>
<tr>
<td><%= c.id %></td>
<td>
<%= c.display_id || c.id %></td>
<td><%= c.name %></td>
<td class="<%= c.last_status === 'OK' ? 'ok' : 'fail' %>">
<%= c.last_status || 'N/A' %>
</td>
<td><%= c.last_run || 'N/A' %></td>
<td>
<form method="POST" action="/run/<%= c.id %>" style="margin:0;">
<button type="submit">Run-Test</button>
</form>
</td>
</tr>
<% }) %>