Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 105 → Rev 106

/trunk/modules/resultat/squelettes/resultat_determination_noms.tpl.html
1,14 → 1,26
<ol>
<? foreach ($noms as $id => $nom) : ?>
<li>
<ul id="ef-resultats-determination">
<? foreach ($noms as $nnTaxon => $nom) : ?>
<li style="min-height:101px;">
<a href="<?=$nom['url']?>">
<strong class="nom-sci-retenu"><?=$nom['nom_sci']?></strong>
<?php if ($nom['retenu'] !== 'true') : ?>
<?php foreach ($nom['synonymes'] as $id_syn => $synonyme) : ?>
<?=$synonyme?>,
<strong class="nom-sci-retenu"><?=$nom['nom_sci_retenu']?></strong>
</a>
<img src="http://localhost/service:eflore:0.1/cel/images?masque.nn=<?=$nnTaxon?>&retour.format=CXS" style="display:block;float:right;"/>
<?php if (isset($nom['synonymes'])) : ?>
<ul class="synonymes" style="width:50%;">
<?php foreach ($nom['synonymes'] as $synonyme) : ?>
<li>= <?=$synonyme?></li>
<? endforeach; ?>
</ul>
<?php endif; ?>
</a>
</li>
<? endforeach; ?>
</ol>
</ul>
<script>
//Déclenchement d'actions quand JQuery et le document HTML sont OK
$(document).ready(function() {
});
 
</script>