Subversion Repositories Applications.referentiel

Rev

Rev 125 | Rev 162 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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