CommunityID/modules/stats/views/scripts/top/index.phtml

11 lines
334 B
PHTML
Raw Normal View History

2019-07-17 20:08:50 +00:00
<h3><?= $this->translate('Top 10 Trusted Sites') ?></h3>
<table id="topTenTable">
<? foreach ($this->sites as $num => $siteInfo): ?>
<tr>
<td><?= $num + 1 ?></td>
<td><?= $siteInfo['site'] ?></td>
<td>(<?= $this->translate('%s users', $siteInfo['num']) ?>)</td>
</tr>
<? endforeach ?>
</table>