39 lines
1.5 KiB
PHP
Executable File
39 lines
1.5 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER SANTE - Suppression Face";
|
|
?>
|
|
|
|
|
|
<INPUT class="sr-only" TYPE="text" id="faceRegistered_C" name="faceRegistered_C" value="<?= $_SESSION['faceRegistered_C'] ?>">
|
|
|
|
<legend> <?= _("Historique des suppressions de faces") ?> </legend>
|
|
|
|
<div id="div_dossiers">
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
|
|
<thead>
|
|
<tr>
|
|
<th width="15%" style='text-align:center'> Date </th>
|
|
<th style='text-align:center'> <?= _("Motif") ?> </th>
|
|
<th style='text-align:center'> <?= _("Responsable") ?> </th>
|
|
<th style='text-align:center'> <?= _("prestataire") ?> </th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th width="15%" style='text-align:center'> <?= _("Motif Suppression") ?> </th>
|
|
<td colspan="2"><INPUT class="form-control" TYPE="text" id="motif" NAME="motif" style='font-size:10pt;' required AUTOCOMPLETE="OFF" autofocus ></td>
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($facesupprimers as $facesupprimer): ?>
|
|
<tr valign="top">
|
|
<td align='center'><?= dateheureLang($this->nettoyer($facesupprimer['dateSysteme'])) ?></td>
|
|
<td align='center'><?= $this->nettoyer($facesupprimer['motif']) ?></td>
|
|
<td align='center'><?= $this->nettoyer($facesupprimer['nomUtilisateur']) ?></td>
|
|
<td align='center'><?= $this->nettoyer($facesupprimer['prestataire']) ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|