26 lines
1.0 KiB
PHP
Executable File
26 lines
1.0 KiB
PHP
Executable File
<div id="div_notes">
|
|
<table class="table table-striped table-bordered table-condensed table-responsive" style="font-size:10pt;">
|
|
<thead>
|
|
<tr>
|
|
<th width="10%" style="text-align:center"> Date </th>
|
|
<th style="text-align:center"> Notes </th>
|
|
<th width="8%" style="text-align:center"> <?= _("Nb Jours") ?> </th>
|
|
<th width="20%" style="text-align:center"> <?= _("Médecin") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($reposmedicaux as $reposmedical):
|
|
$idReposmaladie = $this->nettoyer($reposmedical['idReposmaladie']);
|
|
?>
|
|
<tr valign="top">
|
|
<td align='center'><?= dateheureLang($this->nettoyer($reposmedical['dateSysteme'])) ?></td>
|
|
<td> <textarea style="font-size:12pt;" rows="6" cols="100" readonly ><?= $this->nettoyer($reposmedical['notes']) ?></textarea> </td>
|
|
<td align='center'> <?= $this->nettoyer($reposmedical['nbJour']) ?> </td>
|
|
<td> <?= $this->nettoyer($reposmedical['medecin']) ?> </td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|