Add view for add-points/assurance
Signed-off-by: Michael Tänzer <neo@nhng.de>
This commit is contained in:
parent
63afee5e17
commit
4af9e0a9bb
1 changed files with 20 additions and 0 deletions
20
manager/application/views/scripts/add-points/assurance.phtml
Normal file
20
manager/application/views/scripts/add-points/assurance.phtml
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?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>
|
||||
<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>
|
||||
</table>
|
Loading…
Reference in a new issue