Remove Index Task display

This commit is contained in:
speatzle 2024-05-09 19:07:17 +02:00
parent 9979a1eba8
commit 755b650df5
2 changed files with 0 additions and 61 deletions

View file

@ -72,40 +72,4 @@
</div>
{{end}}
</div>
<p>
<h2>Tasks</h2>
<div class="task-list">
<table>
<tr>
<th>ID</th>
<th>Library</th>
<th>Worker</th>
<th>Type</th>
<th>Status</th>
<th>File</th>
</tr>
{{range $t := .Tasks}}
<tr>
<td>
{{ $t.ID }}
</td>
<td>
{{ $t.Library }}
</td>
<td>
{{ $t.Worker }}
</td>
<td>
{{ $t.Type }}
</td>
<td>
{{ $t.Status }}
</td>
<td>
{{ $t.File }}
</td>
</tr>
{{end}}
</table>
</div>
{{template "tail"}}