45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
<div id="div_complet">
|
|
<div class="row">
|
|
<div id="div_prestataires_en_plus" class="col-xs-7" >
|
|
<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 en plus") ?> </th>
|
|
<th width="15%" style='text-align:center'> <?= _("T M") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($prestataireenpluss as $prestataireenplus):
|
|
?>
|
|
<tr valign="top">
|
|
<td > <?= $this->nettoyer($prestataireenplus['prestataire']) ?></td>
|
|
|
|
<td align='center'> <?= $this->nettoyer($prestataireenplus['tm']) ?> </td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div id="div_prestataires_en_moins" class="col-xs-5" >
|
|
<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 en moins") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($prestataireenmoinss as $prestataireenmoins):
|
|
?>
|
|
<tr valign="top">
|
|
<td > <?= $this->nettoyer($prestataireenmoins['prestataire']) ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|