1
0
forked from ALHP/ALHP.GO

added queued packages to footer

This commit is contained in:
2021-11-24 13:24:41 +01:00
parent cd4cdadb66
commit 67e9d30f6e
2 changed files with 5 additions and 1 deletions

View File

@@ -340,6 +340,7 @@ func (b *BuildManager) htmlWorker() {
Latest int
Failed int
Skipped int
Queued int
}
for {
@@ -419,6 +420,8 @@ func (b *BuildManager) htmlWorker() {
gen.Skipped = c.Count
case dbpackage.StatusLatest:
gen.Latest = c.Count
case dbpackage.StatusQueued:
gen.Queued = c.Count
}
}