39 lines
1.4 KiB
PHP
Executable File
39 lines
1.4 KiB
PHP
Executable File
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:9pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td align='center'><input class = "form-control btn btn-danger" data-bs-toggle="modal" data-bs-target="#popRecherchePrestataireMoins" style="font-size:10pt;" type="button" value="<?= _("Prestataires en moins (".count($prestataireenmoinss).")") ?>" onclick=""></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive tabspecialemini compact" style="font-size:9pt;">
|
|
<thead>
|
|
<tr>
|
|
<th style='text-align:center'> <?= _("Nom") ?> </th>
|
|
<th style='text-align:center'> <?= _("Type") ?> </th>
|
|
<th width="2%" style='text-align:center'> <?= _("Suppr") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($prestataireenmoinss as $prestataireenmoins):
|
|
$type = $this->nettoyer($prestataireenmoins['typep']);
|
|
|
|
if (est_anglophone()){
|
|
$type = $this->nettoyer($prestataireenmoins['typepEng']);
|
|
}
|
|
|
|
$idData = $this->nettoyer($prestataireenmoins['id']);
|
|
?>
|
|
<tr valign="top">
|
|
<td > <?= $this->nettoyer($prestataireenmoins['prestataire']) ?></td>
|
|
<td > <?= $type; ?></td>
|
|
<td >
|
|
<button style="width:100%" type="button" id="btn-supprimer" name="Supprimer"
|
|
onclick="JAVASCRIPT:supprimerprestataireenplus(<?= $idData; ?>)">X</button>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
|