Subversion Repositories Applications.referentiel

Rev

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

Rev Author Line No. Line
69 delphine 1
<!-- REF - DEBUT RESULTAT -->
2
<div id="ref-resultat-recherche">
83 delphine 3
	<?=$fragmenteur ?>
74 delphine 4
	<? if (isset($resultats)) : ?>
69 delphine 5
		<table>
6
			<thead>
7
				<tr>
8
					<th>Identifiant numérique du nom scientifique</th>
9
					<th>Nom scientifique</th>
10
					<th>Auteur</th>
11
					<th>Année</th>
12
					<th>Référence bibliographique</th>
13
					<th>Nom addendum</th>
14
				</tr>
15
			</thead>
16
			<tbody>
83 delphine 17
				<? foreach ($resultats as $resultat) : ?>
18
					<tr <?=($resultat['num_nom'] == $resultat['num_nom_retenu']) ? 'class="nom_retenu"' : '' ?>>
19
						<td><a href="<?=Recherche::getUrlFicheTaxon($resultat)?>"><?=$resultat['num_nom']?></a></td>
20
						<td><a href="<?=Recherche::getUrlFicheTaxon($resultat)?>"><?=$resultat['nom_complet']?></a></td>
21
						<td><?=$resultat['auteur']?></td>
22
						<td><?=$resultat['annee']?></td>
23
						<td><?=$resultat['biblio_origine']?></td>
24
						<td><?=$resultat['nom_addendum']?></td>
25
					</tr>
26
				<? endforeach; ?>
74 delphine 27
			</tbody>
69 delphine 28
		</table>
74 delphine 29
	<? endif; ?>
69 delphine 30
</div>
31
<!-- REF - FIN RESULTAT -->