add reception collection basics
This commit is contained in:
21
frontend/views/common/_transfer_total.php
Normal file
21
frontend/views/common/_transfer_total.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<div class="row">
|
||||
<div class="col-md-4 col-md-offset-4">
|
||||
<div class="panel panel-info">
|
||||
<div class="panel-heading"><?php echo $options['panelHeading']?></div>
|
||||
<div class="panel-body">
|
||||
<dl class="dl-horizontal dl-totals">
|
||||
<?php
|
||||
foreach ($options['statistic']['accounts'] as $acc ){
|
||||
?>
|
||||
<dt><?php echo $acc['label'] ?></dt>
|
||||
<dd class="text-right"><?php echo $acc['money'] ?></dd>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<dt><?php echo $options['totalHeading']?></dt>
|
||||
<dd class="text-right"><?php echo $options['statistic']['total'] ?></dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user