24 lines
997 B
PHP
Executable File
24 lines
997 B
PHP
Executable File
<div id="div_limites">
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:8pt;">
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align:center"> <?= _("Garantie") ?> </th>
|
|
<th style="text-align:center"> <?= _("Limites") ?> </th>
|
|
<th style="text-align:center"> <?= _("Consommations") ?> </th>
|
|
<th style="text-align:center"> <?= _("Solde") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<?php foreach ($garantieadherents as $garantieadherent):?>
|
|
<tr valign="top">
|
|
<td align='center'> <?= $this->nettoyer($garantieadherent['garantie'])?> </td>
|
|
<td align='center'><?= format_N($this->nettoyer($garantieadherent['plafond'])) ?></td>
|
|
<td align='center'><?= format_N($this->nettoyer($garantieadherent['consommation'])) ?></td>
|
|
<td align='center'><?= format_N($this->nettoyer($garantieadherent['solde'])) ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|