xref: /webtrees/resources/views/components/badge.phtml (revision 54c7f8df0fc7bddb0bcc1441937c30320ca68563)
1<?php use Fisharebest\Webtrees\I18N; ?>
2
3<span class="badge badge-<?= $context ?? 'secondary' ?>">
4        <?= I18N::number($count) ?>
5    <?php if (($total ?? $count) > $count) : ?>
6        / <?= I18N::number($total) ?>
7    <?php endif ?>
8</span>
9