show nicer numberformat for total qsos and show also number of users

This commit is contained in:
HB9HIL
2024-09-16 00:57:27 +02:00
parent 1c0a6d5750
commit 8d4b99dd04
3 changed files with 12 additions and 1 deletions

View File

@@ -70,7 +70,11 @@
</tr>
<tr>
<td><?= __("Total QSO on this instance"); ?></td>
<td><?php echo $qso_total . ' QSOs'; ?></td>
<td><?php echo number_format($qso_total, 0, '.', '\'') . ' QSOs'; ?></td>
</tr>
<tr>
<td><?= __("Total User"); ?></td>
<td><?php echo $users_total . ' User'; ?></td>
</tr>
</table>
</div>