2011-07-05 16:54:19 +00:00
|
|
|
<?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>
|
2011-07-05 17:21:06 +00:00
|
|
|
<?php foreach ($this->assurances as $i => $assurance) {?>
|
2011-07-05 16:54:19 +00:00
|
|
|
<tr>
|
|
|
|
<td><?php print $i ?></td>
|
|
|
|
<td><?php print $assurance['assuree'] ?></td>
|
|
|
|
<td><?php print $assurance['points'] ?></td>
|
|
|
|
</tr>
|
|
|
|
<?php }?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|