Use database status and health, calculate md5

This commit is contained in:
Samuel Lorch 2024-05-11 00:43:26 +02:00
parent 806f6e7e61
commit 78d818b8d1
7 changed files with 112 additions and 37 deletions

View file

@ -11,7 +11,9 @@
<th>ID</th>
<th>Path</th>
<th>Size</th>
<th>Missing</th>
<th>Status</th>
<th>Health</th>
<th>MD5</th>
</tr>
{{range $f := .Files}}
<tr>
@ -25,7 +27,13 @@
{{ $f.Size }}
</td>
<td>
{{ $f.Missing }}
{{ $f.Status }}
</td>
<td>
{{ $f.Health }}
</td>
<td>
{{ $f.MD5 }}
</td>
</tr>
{{end}}