Subversion Repositories Applications.referentiel

Rev

Rev 74 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<!-- REF - DEBUT RESULTAT -->
<div id="ref-resultat-recherche">
        <?=$fragmenteur;?>
        <?php 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>
                                <?php foreach ($resultats as $resultat) : ?>
                                        <?if ($resultat['num_nom'] == $resultat['num_nom_retenu']) : ?>
                                                <tr class='nom_retenu'>
                                                        <td><?=$resultat['num_nom'];?></td>
                                                        <td><?=$resultat['nom_complet'];?></td>
                                                        <td><?=$resultat['auteur'];?></td>
                                                        <td><?=$resultat['annee'];?></td>
                                                        <td><?=$resultat['biblio_origine'];?></td>
                                                        <td><?=$resultat['nom_addendum'];?></td>
                                                </tr>   
                                        <? else : ?>
                                                <tr>
                                                        <td><?=$resultat['num_nom'];?></td>
                                                        <td><?=$resultat['nom_complet'];?></td>
                                                        <td><?=$resultat['auteur'];?></td>
                                                        <td><?=$resultat['annee'];?></td>
                                                        <td><?=$resultat['biblio_origine'];?></td>
                                                        <td><?=$resultat['nom_addendum'];?></td>
                                                </tr>   
                                        <?endif;?>
                                <?php endforeach; ?>
                                </tbody>
                </table>
        <?php endif; ?>
</div>
<!-- REF - FIN RESULTAT -->