added hebrew, statistics
This commit is contained in:
49
html/statsitics.html
Normal file
49
html/statsitics.html
Normal file
@@ -0,0 +1,49 @@
|
||||
{{define "body"}}
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="column">
|
||||
|
||||
<h1>Download Statistics</h1>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Program</th>
|
||||
<th>Version</th>
|
||||
<th>Download Count</th>
|
||||
</tr>
|
||||
{{range .VersionStats}}
|
||||
<tr>
|
||||
<td>
|
||||
{{.ID}}
|
||||
</td>
|
||||
<td>
|
||||
{{.Version}}
|
||||
</td>
|
||||
<td>
|
||||
{{.Counter}}
|
||||
</td>
|
||||
</tr>
|
||||
{{end}}
|
||||
</table>
|
||||
</div>
|
||||
<div class="column" id="totalus">
|
||||
<h1>Total Download Statistics</h1>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Package</th>
|
||||
<th>Search Count</th>
|
||||
</tr>
|
||||
{{range .TotalStats}}
|
||||
<tr>
|
||||
<td>
|
||||
{{.ID}}
|
||||
</td>
|
||||
<td>
|
||||
{{.Counter}}
|
||||
</td>
|
||||
</tr>
|
||||
{{end}}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
Reference in New Issue
Block a user