Nice format stats (comma sep)

This commit is contained in:
dgtlmoon
2023-10-29 19:13:15 +01:00
parent 3e5671a3a2
commit 9ffe7e0eaf

View File

@@ -455,15 +455,15 @@ Unavailable") }}
<tbody>
<tr>
<td>Check count</td>
<td>{{ watch.check_count }}</td>
<td>{{ "{:,}".format( watch.check_count) }}</td>
</tr>
<tr>
<td>Consecutive filter failures</td>
<td>{{ watch.consecutive_filter_failures }}</td>
<td>{{ "{:,}".format( watch.consecutive_filter_failures) }}</td>
</tr>
<tr>
<td>History length</td>
<td>{{ watch.history|length }}</td>
<td>{{ "{:,}".format(watch.history|length) }}</td>
</tr>
<tr>
<td>Last fetch time</td>