git init of winget repo statistics and manager
This commit is contained in:
58
html/index.html
Normal file
58
html/index.html
Normal file
@@ -0,0 +1,58 @@
|
||||
<!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>
|
Reference in New Issue
Block a user