Code files

This commit is contained in:
Akhil
2017-07-31 11:33:31 +05:30
parent 073a63ebdd
commit b9ae409ec0
801 changed files with 17535 additions and 0 deletions
@@ -0,0 +1,15 @@
<!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>