Rev 69 | Rev 83 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<!-- REF - DEBUT RESULTAT -->
<div id="ref-resultat-recherche">
<?=$fragmenteur;?>
<? if (isset($resultats)) : ?>
<table>
<thead>
<tr>
<th>Identifiant numérique du nom scientifique</th>
<th>Nom scientifique</th>
<th>Auteur</th>
<th>Année</th>
<th>Référence bibliographique</th>
<th>Nom addendum</th>
</tr>
</thead>
<tbody>
<? foreach ($resultats as $resultat) :
if ($resultat['num_nom'] == $resultat['num_nom_retenu']) : ?>
<tr class='nom_retenu'>
<td><a href="<?=Recherche::getUrlFicheTaxon($resultat)?>"><?=$resultat['num_nom']?></a></td>
<td><a href="<?=Recherche::getUrlFicheTaxon($resultat)?>"><?=$resultat['nom_complet']?></a></td>
<td><?=$resultat['auteur'];?></td>
<td><?=$resultat['annee'];?></td>
<td><?=$resultat['biblio_origine'];?></td>
<td><?=$resultat['nom_addendum'];?></td>
</tr>
<? else : ?>
<tr>
<td><a href="<?=Recherche::getUrlFicheTaxon($resultat)?>"><?=$resultat['num_nom']?></a></td>
<td><a href="<?=Recherche::getUrlFicheTaxon($resultat)?>"><?=$resultat['nom_complet']?></a></td>
<td><?=$resultat['auteur'];?></td>
<td><?=$resultat['annee'];?></td>
<td><?=$resultat['biblio_origine'];?></td>
<td><?=$resultat['nom_addendum'];?></td>
</tr>
<?endif;
endforeach; ?>
</tbody>
</table>
<? endif; ?>
</div>
<!-- REF - FIN RESULTAT -->