29 lines
633 B
PHP
Executable File
29 lines
633 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">
|
|
<H3><?= $msgErreur ?></H3>
|
|
</div>
|
|
<?php endif; ?>
|