Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 95 Rev 106
Line 1... Line 1...
1
<ol>
1
<ul id="ef-resultats-determination">
2
	<? foreach ($noms as $id => $nom) : ?>
2
	<? foreach ($noms as $nnTaxon => $nom) : ?>
3
	<li>
3
	<li style="min-height:101px;">
4
		<a href="<?=$nom['url']?>">
4
		<a href="<?=$nom['url']?>">
5
		<strong class="nom-sci-retenu"><?=$nom['nom_sci']?></strong>
5
			<strong class="nom-sci-retenu"><?=$nom['nom_sci_retenu']?></strong>
-
 
6
		</a>
-
 
7
		
-
 
8
		<img src="http://localhost/service:eflore:0.1/cel/images?masque.nn=<?=$nnTaxon?>&retour.format=CXS" style="display:block;float:right;"/>
-
 
9
		
6
		<?php if ($nom['retenu'] !== 'true') : ?>
10
		<?php if (isset($nom['synonymes'])) : ?>
-
 
11
		<ul class="synonymes" style="width:50%;">
7
			<?php foreach ($nom['synonymes'] as $id_syn => $synonyme) : ?>
12
			<?php foreach ($nom['synonymes'] as $synonyme) : ?>
8
				<?=$synonyme?>, 
13
				<li>= <?=$synonyme?></li>
9
			<? endforeach; ?>
14
			<? endforeach; ?>
-
 
15
		</ul>
10
		<?php endif; ?>
16
		<?php endif; ?>
11
		</a>
-
 
12
	</li>
17
	</li>
13
	<? endforeach; ?>
18
	<? endforeach; ?>
14
</ol>
-
 
15
19
</ul>
-
 
20
<script>
-
 
21
//Déclenchement d'actions quand JQuery et le document HTML sont OK
-
 
22
$(document).ready(function() {
-
 
23
	
-
 
24
});
-
 
25
 
-
 
26
</script>
-
 
27
16
28