27 lines
557 B
PHP
27 lines
557 B
PHP
<?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; ?>
|