17 lines
572 B
PHP
17 lines
572 B
PHP
<div class="panel <?= $options['panel-type']?>">
|
|
<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>
|