34 lines
1008 B
PHP
Executable File
34 lines
1008 B
PHP
Executable File
<?php $this->titre = "INTER-SANTE - Exclusions du collège"; ?>
|
|
|
|
<table class="table table-striped table-hover table-condensed table-responsive" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td align = "center" width="20%" > <?= _("Collège") ?> </td>
|
|
<td>
|
|
<SELECT class="form-control" id="idCollege" NAME="idCollege" autofocus onChange="ajaxListerExclusions();" style="font-size:10pt;" >
|
|
<?php liste_options($college,""); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="div_acte">
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive">
|
|
<thead>
|
|
<tr>
|
|
<th> <?= _("Collège") ?> </th>
|
|
<th> <?= _("Acte") ?> </th>
|
|
<th style="text-align: center;"> <?= _("Exclu") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<?php if (isset($msgErreur)): ?>
|
|
<div class="alert alert-danger" style="height:38px; padding:5px;" >
|
|
<H4><?= $msgErreur ?></H4>
|
|
</div>
|
|
<?php endif; ?>
|