xref: /webtrees/resources/views/components/badge.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
1d70512abSGreg Roach<?php
2d70512abSGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
5d70512abSGreg Roachuse Fisharebest\Webtrees\I18N;
6d70512abSGreg Roach
77c2c99faSGreg Roach/**
87c2c99faSGreg Roach * @var string|null $context
97c2c99faSGreg Roach * @var int         $count
107c2c99faSGreg Roach * @var int|null    $total
117c2c99faSGreg Roach */
127c2c99faSGreg Roach
13d70512abSGreg Roach?>
148e5c5efeSGreg Roach
154ab569c4SGreg Roach<span class="badge bg-<?= $context ?? 'secondary' ?>">
168e5c5efeSGreg Roach        <?= I18N::number($count) ?>
179d627a9eSGreg Roach    <?php if (($total ?? $count) > $count) : ?>
189d627a9eSGreg Roach        / <?= I18N::number($total) ?>
199d627a9eSGreg Roach    <?php endif ?>
208e5c5efeSGreg Roach</span>
21