summaryrefslogtreecommitdiff
path: root/manager/application/views/scripts/manage-account/admin-increase.phtml
blob: bf984d3d3a85e9d0158bb95af9c87fdaec70b3a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
 * @author Michael Tänzer
 * @todo Text
 */
?>

<h1><?php print I18n::_('Points added successfully')?></h1>

<table>
    <thead>
        <tr><th>#</th><th><?php print I18n::_('Number of points')?></th></tr>
    </thead>
    <tbody>
        <?php foreach ($this->adminIncreasesDone as $i => $points) {
            printf('<tr><td> %1$d </td><td> %2$d </td></tr>', $i, $points);
        }?>
    </tbody>
</table>