33 |
jpm |
1 |
<!-- REF - DEBUT TRAITEMENT -->
|
|
|
2 |
<h1>
|
|
|
3 |
Résultats du traitement
|
|
|
4 |
<?php if (isset($traitement)) : ?>
|
|
|
5 |
« <?=$traitement['nom'];?> <span class="discretion">(id:<?=$traitement['id_traitement']?>)</span> »
|
|
|
6 |
<?php endif; ?>
|
|
|
7 |
</h1>
|
|
|
8 |
|
|
|
9 |
<?php if (isset($messages)) : ?>
|
|
|
10 |
<h2>Messages</h2>
|
|
|
11 |
<?php foreach ($messages as $message) : ?>
|
|
|
12 |
<p class="information"><?=$message;?></p>
|
|
|
13 |
<?php endforeach; ?>
|
|
|
14 |
<?php endif; ?>
|
|
|
15 |
|
|
|
16 |
<h2>Résultats</h2>
|
|
|
17 |
<?php if (isset($resultats)) : ?>
|
|
|
18 |
<table id="resultats">
|
|
|
19 |
<caption>Résultats</caption>
|
|
|
20 |
<thead>
|
|
|
21 |
<tr>
|
|
|
22 |
<th>Numero</th>
|
|
|
23 |
<th>Nom</th>
|
|
|
24 |
<th>Résultat</th>
|
|
|
25 |
<th>Description</th>
|
|
|
26 |
</tr>
|
|
|
27 |
</thead>
|
|
|
28 |
<tbody>
|
|
|
29 |
<?php $i=1; ?>
|
|
|
30 |
<?php foreach ($resultats as $resultat) : ?>
|
|
|
31 |
<tr>
|
|
|
32 |
<td class="numero <?=$resultat['resultat'] ? 'ok' : 'ko';?>" title="Id:<?=$resultat['id_resultat']?>"><?=$i++?></td>
|
|
|
33 |
<td class="nom <?=$resultat['resultat'] ? 'ok' : 'ko';?>"><a href="<?=$resultat['url']?>"><?=$resultat['nom']?></a></td>
|
|
|
34 |
<td class="<?=$resultat['resultat'] ? 'ok' : 'ko';?>"><span class="resultat"><?=$resultat['resultat'] ? 'ok' : 'ko';?></span></td>
|
|
|
35 |
<td class="description"><?=$resultat['description']?></td>
|
|
|
36 |
</tr>
|
|
|
37 |
<?php endforeach; ?>
|
|
|
38 |
</tbody>
|
|
|
39 |
</table>
|
|
|
40 |
<?php else : ?>
|
|
|
41 |
<p class="information">Aucun resultat pour ce traitement.</p>
|
|
|
42 |
<?php endif; ?>
|
|
|
43 |
<!-- REF - FIN TRAITEMENT -->
|