diff options
Diffstat (limited to 'manager/application/views/scripts/manage-account/batch-assurance.phtml')
-rw-r--r-- | manager/application/views/scripts/manage-account/batch-assurance.phtml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/manager/application/views/scripts/manage-account/batch-assurance.phtml b/manager/application/views/scripts/manage-account/batch-assurance.phtml new file mode 100644 index 0000000..4e0ae82 --- /dev/null +++ b/manager/application/views/scripts/manage-account/batch-assurance.phtml @@ -0,0 +1,28 @@ +<?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->assurancesDone 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>
\ No newline at end of file |