Subversion Repositories Applications.referentiel

Rev

Rev 162 | Rev 230 | 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">
74 delphine 3
	<? if (isset($resultats)) : ?>
202 delphine 4
		<br /><br />
5
		<?=$fragmenteur ?>
6
		<i>Les résultats sont affichés par num_nom croissant.</i>
69 delphine 7
		<table>
8
			<thead>
9
				<tr>
202 delphine 10
					<th title="Identifiant numérique du nom scientifique">num_nom</th>
69 delphine 11
					<th>Nom scientifique</th>
12
					<th>Auteur</th>
13
					<th>Année</th>
14
					<th>Référence bibliographique</th>
15
					<th>Nom addendum</th>
16
				</tr>
17
			</thead>
18
			<tbody>
83 delphine 19
				<? foreach ($resultats as $resultat) : ?>
20
					<tr <?=($resultat['num_nom'] == $resultat['num_nom_retenu']) ? 'class="nom_retenu"' : '' ?>>
21
						<td><a href="<?=Recherche::getUrlFicheTaxon($resultat)?>"><?=$resultat['num_nom']?></a></td>
162 delphine 22
						<td><a href="<?=Recherche::getUrlFicheTaxon($resultat)?>"><?=$resultat['nom_sci']?></a>
23
							<? if ($resultat['nom_sci'] != '') : ?>
24
								<a href="<?=Recherche::getUrlRecherche($resultat['nom_sci'], $referentiel)?>">
25
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
26
								</a>
27
							<? endif; ?>
28
						</td>
29
						<td><?=$resultat['auteur']?>
30
							<? if ($resultat['auteur'] != '') : ?>
31
								<a href="<?=Recherche::getUrlRecherche('au:'.$resultat['auteur'], $referentiel)?>">
32
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
33
								</a>
34
							<? endif; ?>
35
						</td>
36
						<td><?=$resultat['annee']?>
37
							<? if ($resultat['annee'] != '') : ?>
38
								<a href="<?=Recherche::getUrlRecherche('an:'.$resultat['annee'], $referentiel)?>">
39
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
40
								</a>
41
							<? endif; ?>
42
						</td>
43
						<td><?=$resultat['biblio_origine']?>
44
							<? if ($resultat['biblio_origine'] != '') : ?>
45
								<a href="<?=Recherche::getUrlRecherche('bib:'.$resultat['biblio_origine'], $referentiel)?>">
46
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
47
								</a>
48
							<? endif; ?>
49
						</td>
50
						<td><?=$resultat['nom_addendum']?>
51
							<? if ($resultat['nom_addendum'] != '') : ?>
52
								<a href="<?=Recherche::getUrlRecherche('mots:',$resultat['nom_addendum'], $referentiel)?>">
53
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
54
								</a>
55
							<? endif; ?>
56
						</td>
83 delphine 57
					</tr>
58
				<? endforeach; ?>
74 delphine 59
			</tbody>
69 delphine 60
		</table>
202 delphine 61
		<?=$fragmenteur ?>
74 delphine 62
	<? endif; ?>
202 delphine 63
 
69 delphine 64
</div>
65
<!-- REF - FIN RESULTAT -->