Files
2025-03-12 17:06:23 +01:00

22 lines
878 B
PHP

<?php use_helper('stCurrency') ?>
<div class="bs-d-flex bs-justify-content-end bs-mt-4">
<div>
<?php st_admin_table_start(array(), array('min_width' => false, 'compact' => true, 'highlight' => false)); ?>
<tbody>
<tr>
<td class="text-right"><?php echo __('Ilość zamówień') ?>:</td>
<td><?php echo $count ?></td>
</tr>
<tr>
<td class="text-right"><?php echo __('Średnia wartość brutto') ?>:</td>
<td><?php echo st_currency_default_format($averageAmount) ?></td>
</tr>
<tr>
<td class="text-right"><?php echo __('Suma brutto') ?>:</td>
<td><b><?php echo st_currency_default_format($totalAmount) ?></b></td>
</tr>
</tbody>
<?php st_admin_table_end() ?>
</div>
</div>