24 lines
1.1 KiB
PHP
24 lines
1.1 KiB
PHP
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:8pt;">
|
|
<thead>
|
|
<tr>
|
|
<th style='text-align:center'> <?= _("No") ?> </th>
|
|
<th style='text-align:center'> <?= _("Nom") ?> </th>
|
|
<th style='text-align:center'> <?= _("Prénoms") ?> </th>
|
|
<th style='text-align:center'> <?= _("Sélectionner") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($clientsexistants as $clientsexistant):
|
|
$idClientExistant = $clientsexistant['idClientExistant'];
|
|
?>
|
|
|
|
<tr valign="top">
|
|
<td align='center'> <?= $this->nettoyer($clientsexistant['numeroClient']) ?> </td>
|
|
<td align='center'> <?= $this->nettoyer($clientsexistant['nom']) ?> </td>
|
|
<td align='center'> <?= $this->nettoyer($clientsexistant['prenoms']) ?> </td>
|
|
<td align='center'> <input style='font-size:10pt;' class = "form-control btn btn-info" type="button" value="<?= _("Sélectionner")."..." ?>" onClick="javascript:transformer_devis('<?= $idClientExistant; ?>');"> </td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|