summaryrefslogtreecommitdiff
path: root/resources/views/components/badge.phtml
blob: 29baaf8948242bc24709c4d3d2a167696cf89178 (plain)
1
2
3
4
5
6
7
8
9
10
<?php use Fisharebest\Webtrees\I18N; ?>

<?php if ($count > 0) : ?>
    <span class="badge badge-<?= $context ?? 'secondary' ?>">
        <?= I18N::number($count) ?>
        <?php if (($total ?? $count) > $count) : ?>
            / <?= I18N::number($total) ?>
        <?php endif ?>
    </span>
<?php endif ?>