Subversion Repositories Applications.referentiel

Compare Revisions

Ignore whitespace Rev 68 → Rev 69

/trunk/interfaces/squelettes/resultat_recherche.tpl.html
New file
0,0 → 1,42
<!-- 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 -->