2010-04-29 18:42:37 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Michael Tänzer
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
|
|
|
<h1><?php print I18n::_('Points added successfully')?></h1>
|
|
|
|
|
|
|
|
<p><?php print I18n::_('The following assurances were added to your account:')?></p>
|
|
|
|
|
|
|
|
<table>
|
2015-08-09 17:12:51 +00:00
|
|
|
<thead>
|
|
|
|
<tr><th>#</th><th><?php print I18n::_('Number of points')?></th></tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php foreach ($this->assurancesDone as $i => $points) {
|
|
|
|
printf('<tr><td> %1$d </td><td> %2$d </td></tr>', $i, $points);
|
|
|
|
}?>
|
|
|
|
</tbody>
|
2010-04-29 18:42:37 +00:00
|
|
|
</table>
|