22 lines
661 B
PHP
22 lines
661 B
PHP
<div id="div_complet">
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:9pt;">
|
|
<thead>
|
|
<tr>
|
|
<th style='text-align:center'> <?= _("Prestataires avec derogations TM") ?> </th>
|
|
<th width="15%" style='text-align:center'> <?= _("T M") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($prestatairetms as $prestatairetm):
|
|
?>
|
|
<tr valign="top">
|
|
<td > <?= $this->nettoyer($prestatairetm['prestataire']) ?></td>
|
|
|
|
<td align='center'> <?= $this->nettoyer($prestatairetm['tm']) ?> </td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|