Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1499 Rev 1746
Line 15... Line 15...
15
		</tr>
15
		</tr>
16
	</thead>
16
	</thead>
17
	<tbody>
17
	<tbody>
18
<?php foreach ($differences as $champ => $diff) : ?>
18
<?php foreach ($differences as $champ => $diff) : ?>
19
	<?php if ($diff['type'] == 'A') : 
19
	<?php if ($diff['type'] == 'A') : 
20
		$couleur = CFC;
20
		$couleur = 'CFC';
21
	elseif ($diff['type'] == 'M') : 
21
	elseif ($diff['type'] == 'M') : 
22
		$couleur = FFC;
22
		$couleur = 'FFC';
23
	elseif ($diff['type'] == 'S') : 
23
	elseif ($diff['type'] == 'S') : 
24
		$couleur = F99;
24
		$couleur = 'F99';
25
	endif; ?>
25
	endif; ?>
26
		<tr style="background-color:#<?=$couleur?>;">
26
		<tr style="background-color:#<?=$couleur?>;">
27
			<td style="border:1px dotted;"><?=$champ?></td>
27
			<td style="border:1px dotted;"><?=$champ?></td>
28
			<td style="text-align:center;border:1px dotted;"><?=$diff['type_txt']?></td>
28
			<td style="text-align:center;border:1px dotted;"><?=$diff['type_txt']?></td>
29
			<?php if ($etat == 'M') : ?>
29
			<?php if ($etat == 'M') : ?>