Files
appServerInfo/app/views/index.ejs
2026-02-15 21:48:42 +01:00

31 lines
480 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<title>Docker Info Dashboard</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<h1>System Status</h1>
<table>
<tr>
<th>ID</th>
<th>Name</th>
<th>Status</th>
<th>Last Run</th>
</tr>
<% checks.forEach(c => { %>
<tr>
<td><%= 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>
</tr>
<% }) %>
</table>
</body>
</html>