15 lines
374 B
Plaintext
15 lines
374 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Audit</title>
|
|
<link rel='stylesheet' href='/stylesheets/style.css' />
|
|
</head>
|
|
<body>
|
|
<h1>Calculation History</h1>
|
|
<ul>
|
|
<% list.forEach(function (el) { %>
|
|
<li>at: <%= new Date(el.ts).toLocaleString() %>, calculated: <%= el.calc %>, result: <%= el.result %></li>
|
|
<% }) %>
|
|
</ul>
|
|
</body>
|
|
</html> |