cacert-testmgr/manager/application/views/scripts/manage-account/batch-assurance.phtml
Michael Tänzer 582357352c Doh, copy and paste error
Signed-off-by: Michael Tänzer <neo@nhng.de>
2011-07-05 19:21:06 +02:00

28 lines
No EOL
616 B
PHTML

<?php
/**
* @author Michael Tänzer <neo@nhng.de>
*/
?>
<h1><?php print I18n::_('Assurances executed successfully')?></h1>
<p><?php print I18n::_('The following assurances were executed:')?></p>
<table>
<thead>
<tr>
<th>#</th>
<th><?php print I18n::_('Assuree')?></th>
<th><?php print I18n::_('Number of points')?></th>
</tr>
</thead>
<tbody>
<?php foreach ($this->assurances as $i => $assurance) {?>
<tr>
<td><?php print $i ?></td>
<td><?php print $assurance['assuree'] ?></td>
<td><?php print $assurance['points'] ?></td>
</tr>
<?php }?>
</tbody>
</table>