Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 1020 Rev 1501
Line 8... Line 8...
8
		<tr>
8
		<tr>
9
			<th>Zone géographique</th><th>Règle appliquée</th><th>Texte</th>
9
			<th>Zone géographique</th><th>Règle appliquée</th><th>Texte</th>
10
		</tr>
10
		</tr>
Line 11... Line 11...
11
	
11
	
-
 
12
			<?php foreach ($statuts['statuts'] as $statut) : ?>
12
			<?php foreach ($statuts['statuts'] as $statut) : ?>
13
				<?php if ($statut != array()) : ?>
13
				<tr>
14
					<tr>
14
					<td>
15
						<td>
15
						<?= $statut['zone_application']; ?>
16
							<?= $statut['zone_application']; ?>
16
					</td>
17
						</td>
17
					<td>
18
						<td>
18
						<?= $statut['regle']; ?>
19
							<?= $statut['regle']; ?>
19
					</td>
20
						</td>
20
					<td>
21
						<td>
21
						<?= $statut['texte']; ?>
22
							<?= $statut['texte']; ?>
22
						(<?= $statut['statut']; ?>)
23
							(<?= $statut['statut']; ?>)
23
					</td>
24
						</td>
-
 
25
					</tr>
24
				</tr>
26
				<?php endif; ?>
Line 25... Line 27...
25
			<?php endforeach; ?>
27
			<?php endforeach; ?>
26
	
28