Subversion Repositories Applications.referentiel

Rev

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