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

11 lines
368 B
PHTML

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