27 lines
659 B
PHP
Executable File
27 lines
659 B
PHP
Executable File
<?php $this->titre = "INTER-SANTE - Exclusions de la famile"; ?>
|
|
|
|
<div id="div_acte">
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive">
|
|
<thead>
|
|
<tr>
|
|
<th> <?= _("Actes exclus") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<?php foreach ($exclusions as $exclusion): ?>
|
|
<tr valign="top">
|
|
<td><?= $this->nettoyer($exclusion['libelleActe']) ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
<?php if (isset($msgErreur)): ?>
|
|
<div class="alert alert-danger" style="height:38px; padding:5px;" >
|
|
<H4><?= $msgErreur ?></H4>
|
|
</div>
|
|
<?php endif; ?>
|