cacert-testmgr/manager/application/views/scripts/manage-account/admin-increase.phtml
Michael Tänzer 93f7bf20f6 New admin increase feature
TODO: Add to the menu somewhere
TODO: Test ;-)

Signed-off-by: Michael Tänzer <neo@nhng.de>
2010-06-29 20:00:03 +02:00

19 lines
422 B
PHTML

<?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>