2017-07-31 11:33:31 +05:30

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>