58 lines
1.5 KiB
HTML
58 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>SQLite Data</title>
|
|
<link href="mod.css" rel="stylesheet" type="text/css">
|
|
</head>
|
|
|
|
<body class="m">
|
|
<div class="container">
|
|
|
|
<div class="column">
|
|
|
|
<h1>Download Statistics</h1>
|
|
<table>
|
|
<tr>
|
|
<th>Program</th>
|
|
<th>Version</th>
|
|
<th>Download Count</th>
|
|
</tr>
|
|
<% downloadData.forEach(function(row) { %>
|
|
<tr>
|
|
<td>
|
|
<%= row.program %>
|
|
</td>
|
|
<td>
|
|
<%= row.version %>
|
|
</td>
|
|
<td>
|
|
<%= row.download_count %>
|
|
</td>
|
|
</tr>
|
|
<% }); %>
|
|
</table>
|
|
</div>
|
|
<div class="column" id="totalus">
|
|
<h1>Total Download Statistics</h1>
|
|
<table>
|
|
<tr>
|
|
<th>Package</th>
|
|
<th>Search Count</th>
|
|
</tr>
|
|
<% searchData.forEach(function(row) { %>
|
|
<tr>
|
|
<td>
|
|
<%= row.program %>
|
|
</td>
|
|
<td>
|
|
<%= row.download_count %>
|
|
</td>
|
|
</tr>
|
|
<% }); %>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |