45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Service-Logs</title>
|
|
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-dark bg-dark px-3">
|
|
<span class="navbar-brand">📜 Service-Änderungsprotokoll</span>
|
|
<a href="/dashboard" class="btn btn-outline-light btn-sm">Dashboard</a>
|
|
</nav>
|
|
|
|
<div class="container mt-4">
|
|
|
|
<table class="table table-sm table-bordered">
|
|
<thead class="table-light">
|
|
<tr>
|
|
<th>Datum</th>
|
|
<th>User</th>
|
|
<th>Aktion</th>
|
|
<th>Vorher</th>
|
|
<th>Nachher</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<% logs.forEach(l => { %>
|
|
<tr>
|
|
<td><%= new Date(l.created_at).toLocaleString("de-DE") %></td>
|
|
<td><%= l.username %></td>
|
|
<td><%= l.action %></td>
|
|
<td><pre><%= l.old_value || "-" %></pre></td>
|
|
<td><pre><%= l.new_value || "-" %></pre></td>
|
|
</tr>
|
|
<% }) %>
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|