Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 146 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

<table id="ef-resultats-decomposition"> 
        <thead>
                <tr>
                        <th id="col-ns">Nom scientifique</th>
                        <th>Auteur</th>
                        <th>Année</th>
                        <th>Référence bibliographique</th>
                        <th title="Commentaires nomenclaturaux ou taxonomiques concernant le nom scientifique">Nom addendum</th>
                        <th title="Identifiant numérique du nom scientifique">N° nom</th>
                </tr>
        </thead>
        <tbody>
        <? $i = 1 ?>
        <? foreach ($noms as $nom) : ?>
                <tr 
                        class="<?=$nom['retenu'] === true ? 'retenu' : 'synonyme' ?>" 
                        title="Ligne #<?=$i++?>">
                        <td>
                                <a href="<?=$nom['urlFiche']?>"><?=$nom['nomSci']?></a>
                        </td>
                        <td><?=$nom['auteur']?></td>
                        <td><?=$nom['annee']?></td>
                        <td><?=$nom['biblio']?></td>
                        <td><?=$nom['addendum']?></td>
                        <td><?=$nom['nn']?></td>
                </tr>
        <? endforeach; ?>
        </tbody>
</table>