2021-04-03 04:19:33 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link href="data:image/x-icon;base64,AAABAAEAEBAQAAEABAAoAQAAFgAAACgAAAAQAAAAIAAAAAEABAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
|
|
AAAAAAAlJSUAAGIAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
|
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAIiIiIgAAAAAAAAAgAAAAAAAAAAAAADIiIiIi
|
|
|
|
IiIjMhERERERESMyERERERERIzIREREREREjMhERIRERESMyERIiIiERIzIRESEREREjMhERERER
|
|
|
|
ESMyERERERERIzIREREREREjMiIiIiIiIiMAAAAAAAAAAAAAAAAAAAAAAAAAAIABAACAAQAAgAEA
|
|
|
|
AIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAA" rel="icon" type="image/x-icon" />
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
td {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
td > * {
|
|
|
|
padding: 20px;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.entry {
|
|
|
|
|
|
|
|
}
|
|
|
|
.grey {
|
|
|
|
color: #888;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.entry_list {
|
|
|
|
width: 100%;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
tbody tr:nth-child(odd) {
|
|
|
|
background-color: #ddd;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<title>Audit log</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<h1>Audit log</h1>
|
|
|
|
|
2021-04-29 01:18:53 +00:00
|
|
|
<p>(Newest events at the top)</p>
|
|
|
|
|
|
|
|
<p>CSV link goes here</p>
|
2021-04-03 04:19:33 +00:00
|
|
|
|
|
|
|
<div style="padding-top: 1em;">
|
|
|
|
{{#if audit_log}}
|
|
|
|
<table class="entry_list">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2021-04-29 01:18:53 +00:00
|
|
|
<th>UTC</th>
|
|
|
|
<th>Data</th>
|
2021-04-03 04:19:33 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
{{#each audit_log}}
|
|
|
|
<tr>
|
2021-04-29 01:18:53 +00:00
|
|
|
<td><span>{{this.utc_pretty}}</span></td>
|
|
|
|
<td><span>{{this.data_pretty}}</span></td>
|
2021-04-03 04:19:33 +00:00
|
|
|
</tr>
|
|
|
|
{{/each}}
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{{else}}
|
|
|
|
(No audit events yet (escalate this to someone!))
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|