mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
21 lines
306 B
HTML
21 lines
306 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Total Installs</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h2>{{$.Title}} - Total: {{$.Total}}</h2>
|
|
|
|
<table>
|
|
{{each $.Items }}
|
|
<tr>
|
|
<td>{{$.Count}}</td>
|
|
<td>{{$.Title}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</table>
|
|
|
|
</body>
|
|
</html> |