17 lines
552 B
PHP
17 lines
552 B
PHP
<div class="panel <?=$model->panelType ?>">
|
|
<div class="panel-heading"><?php echo $model->panelHeading?></div>
|
|
<div class="panel-body">
|
|
<dl class="dl-horizontal dl-totals">
|
|
<?php
|
|
foreach ($model->statistic['accounts'] as $acc ){
|
|
?>
|
|
<dt><?php echo $acc['label'] ?></dt>
|
|
<dd class="text-right"><?php echo $acc['money'] ?></dd>
|
|
<?php
|
|
}
|
|
?>
|
|
<dt><?php echo $model->totalHeading ?></dt>
|
|
<dd class="text-right"><?php echo $model->statistic['total'] ?></dd>
|
|
</dl>
|
|
</div>
|
|
</div>
|