Subversion Repositories Applications.referentiel

Rev

Rev 39 | Rev 58 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
33 jpm 1
<!-- REF - DEBUT TEST -->
2
<script type="text/javascript">
3
$(document).ready(function() {
4
	$('#ref-dem-ok').click(function(e) {
5
		var ok = false;
45 jpm 6
		if (confirm('Êtes vous sûr de vouloir lancer de nouveaux tests ?')) {
33 jpm 7
			ok = true;
8
		}
9
		return ok;
10
	});
11
});
12
</script>
13
<h1>Tests du référentiel «&nbsp;<?=$ref;?>&nbsp;»</h1>
23 jpm 14
 
45 jpm 15
<h2>Demande de tests</h2>
33 jpm 16
<?php if (isset($ref)) : ?>
17
<div id="zone-form">
18
	<form id="ref-demande-traitement" name="ref-demande-traitement" action="<?=$url_form;?>" method="get">
19
		<input name="module" type="hidden" value="<?=$url_module;?>" />
20
		<input name="action" type="hidden" value="<?=$url_action_demande;?>" />
21
		<input name="ref" type="hidden" value="<?=$ref;?>" />
45 jpm 22
		<input id="ref-dem-ok" type="submit" value="1. Lancer les tests" />
33 jpm 23
	</form>
24
	<form id="ref-rafraichir" name="ref-rafraichir" action="<?=$url_form;?>" method="get">
25
		<input name="module" type="hidden" value="<?=$url_module;?>" />
26
		<input name="action" type="hidden" value="<?=$url_action_rafraichir;?>" />
27
		<input name="ref" type="hidden" value="<?=$ref;?>" />
45 jpm 28
		<input id="ref-raf-ok" type="submit" value="2. Rafraichir" />
33 jpm 29
	</form>
30
</div>
31
<?php endif; ?>
32
 
23 jpm 33
<?php if (isset($messages)) : ?>
34
<h2>Messages</h2>
35
<?php foreach ($messages as $message) : ?>
36
<p class="information"><?=$message;?></p>
37
<?php endforeach; ?>
38
<?php endif; ?>
39
 
39 jpm 40
<h2>Tests</h2>
38 jpm 41
<table>
39 jpm 42
	<caption>Traitements <?=strftime('à %H:%M:%S le %d %B %Y')?></caption>
38 jpm 43
	<thead>
44
		<tr>
45
			<th>Nom (#)</th>
39 jpm 46
			<th>État</th>
47
			<th>Date début</th>
48
			<th>Date fin</th>
49
			<th>Durée</th>
38 jpm 50
		</tr>
51
	</thead>
52
	<tbody>
39 jpm 53
	<?php if (isset($traitements_en_attente)) : ?>
54
		<?php foreach ($traitements_en_attente as $traitement) : ?>
38 jpm 55
		<tr>
39 jpm 56
			<td><?=$traitement['nom']?> <span class="discretion">(id:<?=$traitement['id_traitement']?>)</span></a></td>
45 jpm 57
			<td class="traitement-attente">En attente de traitement...</td>
39 jpm 58
			<td>&nbsp;</td>
59
			<td>&nbsp;</td>
60
			<td>&nbsp;</td>
38 jpm 61
		</tr>
39 jpm 62
		<?php endforeach; ?>
63
	<?php endif; ?>
64
	<?php if (isset($traitements_en_cours)) : ?>
65
		<?php foreach ($traitements_en_cours as $traitement) : ?>
33 jpm 66
		<tr>
39 jpm 67
			<td><?=$traitement['nom']?> <span class="discretion">(id:<?=$traitement['id_traitement']?>)</span></a></td>
45 jpm 68
			<td class="traitement-cours">En cours de traitement...</td>
33 jpm 69
			<td><?=$traitement['date_debut']?></td>
39 jpm 70
			<td>&nbsp;</td>
71
			<td>&nbsp;</td>
33 jpm 72
		</tr>
39 jpm 73
		<?php endforeach; ?>
74
	<?php endif; ?>
75
	<?php if (isset($traitements_termines)) : ?>
76
		<?php foreach ($traitements_termines as $traitement) : ?>
33 jpm 77
		<tr>
78
			<td><a href="<?=$traitement['url']?>"><?=$traitement['nom']?> <span class="discretion">(id:<?=$traitement['id_traitement']?>)</span></a></td>
39 jpm 79
			<td class="traitement-termine">Terminé</td>
33 jpm 80
			<td><?=$traitement['date_debut']?></td>
81
			<td><?=$traitement['date_fin']?></td>
82
			<td><?=$traitement['duree']?></td>
83
		</tr>
39 jpm 84
		<?php endforeach; ?>
85
	<?php endif; ?>
33 jpm 86
	</tbody>
87
</table>
88
<!-- REF - FIN TEST -->