Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 719 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 719 Rev 1210
-
 
1
<!-- onglet "Liste" -->
1
<ol>
2
<ol>
2
	<? foreach ($noms as $id => $nom) : ?>
3
	<? foreach ($noms as $id => $nom) : ?>
3
	<li>
4
	<li>
4
	<?php if ($nom['retenu'] == 'absent') : ?>
5
	<?php if ($nom['retenu'] == 'absent') : ?>
5
		<?=$nom['nomSci']?>
6
		<?=$nom['nomSci']?>
6
	<?php else : ?>
7
	<?php else : ?>
7
		<a href="<?=$nom['urlFiche']?>">
8
		<a href="<?=$nom['urlFiche']?>">
8
			<?php if ($nom['retenu'] == 'true') : ?>
9
			<?php if ($nom['retenu'] == 'true') : ?>
9
				<strong class="nom-sci-retenu"><?=$nom['nomSci']?></strong>
10
				<strong class="nom-sci-retenu"><?=$nom['nomSci']?></strong>
10
			<?php else : ?>
11
			<?php else : ?>
11
				<?=$nom['nomSci']?>
12
				<?=$nom['nomSci']?>
12
			<?php endif; ?>
13
			<?php endif; ?>
13
		</a>
14
		</a>
14
	<?php endif; ?>
15
	<?php endif; ?>
15
	</li>
16
	</li>
16
	<? endforeach; ?>
17
	<? endforeach; ?>
17
</ol>
18
</ol>