radiantassure/Vue/Exclusionfam/index.php
2025-12-07 09:35:13 +00:00

27 lines
557 B
PHP
Executable File

<?php ?>
<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; ?>