Rev 112 | Rev 162 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<!-- REF - DEBUT RESULTAT -->
<div id="ref-resultat-recherche">
<br /><br />
<?=$fragmenteur ?>
<? if (isset($resultats)) : ?>
<table>
<thead>
<tr>
<th title="Identifiant numérique du nom scientifique">Id</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) : ?>
<tr <?=($resultat['num_nom'] == $resultat['num_nom_retenu']) ? '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>
<? endforeach; ?>
</tbody>
</table>
<? endif; ?>
</div>
<!-- REF - FIN RESULTAT -->