summaryrefslogtreecommitdiff
path: root/resources/views/components/progress.phtml
blob: c3dd06ca8efd2f8f9ee6ea5b726c861ef87a1bf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

declare(strict_types=1);

use Fisharebest\Webtrees\I18N;

/**
 * @var float $progress
 */

?>

<div class="progress">
    <div
    class="progress-bar"
    role="progressbar"
    aria-valuenow="<?= $progress * 100 ?>"
    aria-valuemin="0"
    aria-valuemax="100"
    style="width: <?= $progress * 100 ?>%; min-width: 2.5rem;"
    >
        <?= I18N::percentage($progress, 1) ?>
    </div>
</div>