Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 84 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 84 Rev 146
Line 1... Line 1...
1
<ol>
1
<ol>
2
	<? foreach ($noms as $id => $nom) : ?>
2
	<? foreach ($noms as $id => $nom) : ?>
3
	<li>
3
	<li>
4
		<a href="#">
4
		<a href="<?=$nom['urlFiche']?>">
5
	<?php if ($nom['retenu'] == 'true') : ?>
5
	<?php if ($nom['retenu'] == 'true') : ?>
6
		<strong class="nom-sci-retenu"><?=$nom['nom_sci']?></strong>
6
		<strong class="nom-sci-retenu"><?=$nom['nomSci']?></strong>
7
	<?php else : ?>
7
	<?php else : ?>
8
		<?=$nom['nom_sci']?>
8
		<?=$nom['nomSci']?>
9
	<?php endif; ?>
9
	<?php endif; ?>
10
		</a>
10
		</a>
11
	</li>
11
	</li>
12
	<? endforeach; ?>
12
	<? endforeach; ?>
13
</ol>
13
</ol>
14
14