Subversion Repositories Applications.referentiel

Rev

Rev 33 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 33 Rev 58
Line 11... Line 11...
11
<?php foreach ($messages as $message) : ?>
11
<?php foreach ($messages as $message) : ?>
12
<p class="information"><?=$message;?></p>
12
<p class="information"><?=$message;?></p>
13
<?php endforeach; ?>
13
<?php endforeach; ?>
14
<?php endif; ?>
14
<?php endif; ?>
Line -... Line 15...
-
 
15
 
-
 
16
<?php if (isset($urls_zip)) : ?>
-
 
17
	<h2>Téléchargements</h2>
-
 
18
	<ul>
-
 
19
		<?php foreach ($urls_zip as $nom => $url) : ?>
-
 
20
		<li><a href="<?=$url?>"><?=$nom?></a></li>
-
 
21
		<?php endforeach; ?>
-
 
22
	</ul>
-
 
23
<?php endif; ?>
15
 
24
 
16
<h2>Résultats</h2>
25
<h2>Résultats</h2>
-
 
26
<?php if (isset($resultats)) : ?>
17
<?php if (isset($resultats)) : ?>
27
	<?php if ($traitement['script'] == 'tests') : ?>
18
<table id="resultats">
28
		<table id="resultats">
19
	<caption>Résultats</caption>
29
			<caption>Résultats</caption>
20
	<thead>
30
			<thead>
21
		<tr>
31
				<tr>
22
			<th>Numero</th>
32
					<th>Numero</th>
23
			<th>Nom</th>
33
					<th>Nom</th>
24
			<th>Résultat</th>
34
					<th>Résultat</th>
25
			<th>Description</th>
35
					<th>Description</th>
26
		</tr>
36
				</tr>
27
	</thead>
37
			</thead>
28
	<tbody>
38
			<tbody>
29
	<?php $i=1; ?>
39
			<?php $i=1; ?>
30
	<?php foreach ($resultats as $resultat) : ?>
40
			<?php foreach ($resultats as $resultat) : ?>
31
		<tr>
41
				<tr>
32
			<td class="numero <?=$resultat['resultat'] ? 'ok' : 'ko';?>" title="Id:<?=$resultat['id_resultat']?>"><?=$i++?></td>
42
					<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>
43
					<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>
44
					<td class="<?=$resultat['resultat'] ? 'ok' : 'ko';?>"><span class="resultat"><?=$resultat['resultat'] ? 'ok' : 'ko';?></span></td>
35
			<td class="description"><?=$resultat['description']?></td>
45
					<td class="description"><?=$resultat['description']?></td>
36
		</tr>
46
				</tr>
37
	<?php endforeach; ?>
47
			<?php endforeach; ?>
38
	</tbody>
48
			</tbody>
-
 
49
		</table>
-
 
50
	<?php endif; ?>
-
 
51
	<?php if ($traitement['script'] == 'versionnage') : ?>
-
 
52
		<?php $i=1; ?>
-
 
53
		<?php foreach ($resultats as $resultat) : ?>
-
 
54
			<h3><?=$resultat['nom']?> (Id:<?=$resultat['id_resultat']?>)</h3>
-
 
55
			<p><?=$resultat['message']?></p>
-
 
56
		<?php endforeach; ?>
39
</table>
57
	<?php endif; ?>
40
<?php else : ?>
58
<?php else : ?>
41
<p class="information">Aucun resultat pour ce traitement.</p>
59
	<p class="information">Aucun resultat pour ce traitement.</p>
42
<?php endif; ?>
60
<?php endif; ?>
43
<!-- REF - FIN TRAITEMENT -->
61
<!-- REF - FIN TRAITEMENT -->