puts more context/detail around totals/failed

This commit is contained in:
lza_menace 2021-03-07 01:45:52 -08:00
parent 1f932f880c
commit d519553809
2 changed files with 4 additions and 0 deletions

View file

@ -49,6 +49,8 @@ def index():
return render_template(
"index.html",
nodes=nodes,
nodes_healthy=[n for n in nodes if n.available],
nodes_unhealthy=[n for n in nodes if not n.available],
form=form
)