<?php
if ($this->uniquePointList) :
    ?>
    <h3>Unique Points</h3>
    <div class="table-responsive">
        <table class="table table-striped table-hover">
            <thead>
            <tr>
                <th><?= $this->translate('UniqueName') ?></th>
                <th><?= $this->translate('Points') ?></th>
            </tr>
            </thead>
            <?php
            /** @var \PServerCMS\SROUnique\Shard\Entity\UniqueRanking $uniquePoints */
            foreach ($this->uniquePointList as $uniquePoints) :
                ?>
                <tr>
                    <td><?= $this->escapeHtml($uniquePoints->getUniqueInfo()->getName()) ?></td>
                    <td><?= $this->escapeHtml($uniquePoints->getPoints()) ?></td>
                </tr>
                <?php
            endforeach;
            ?>
        </table>
    </div>
    <?php
endif;
?>