47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
|
|
<div class="card shadow-lg border-0 mb-4" style="border-radius: 15px;">
|
|
<div class="card-header bg-primary text-white py-3" style="border-radius: 15px 15px 0 0;">
|
|
<div class="row align-items-center">
|
|
<div class="col-8">
|
|
<h4 id="h4_titre" class="mb-2 text-center">
|
|
<i class="fas fa-heartbeat me-2"></i>
|
|
<?= _("Historique des Diagnostics") ?>
|
|
</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card mb-3">
|
|
<div class="card-header bg-secondary py-2 mb-3">
|
|
<h5 class="mb-0 text-center text-light">
|
|
<?= substr($this->nettoyer($_SESSION['beneficiaire_C']), 0, 25). " ( " .$_SESSION['numeroBeneficiaire_C']. " )" ?>
|
|
</h5>
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
<button style='font-size:10pt;' type="button" class="form-control btn btn-primary btn_autre mb-2" onclick="javascript:afficher_diagnostics_beneficiaire();">
|
|
<i class="fas fa-sync-alt me-2"></i>
|
|
<?= _("Actualiser...") ?>
|
|
</button>
|
|
|
|
<div id="div_dianostics">
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:9pt;">
|
|
<thead>
|
|
<tr>
|
|
<th width="15%" style="text-align:center"> Date </th>
|
|
<th style="text-align:center"> Diagnostic </th>
|
|
<th width="15%" style="text-align:center"> User </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|