Subversion Repositories Applications.referentiel

Rev

Rev 246 | Rev 278 | 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 />
246 delphine 5
		<div>
6
			<div style="float:left;"><?=$fragmenteur ?></div>
7
			<div style="float:right; padding-right:20px;">
8
				<h2>Légende :</h2>
261 delphine 9
				<span class="transmis">à transmettre à taxref</span><br />
246 delphine 10
				<span class="non_transmis">exclu de taxref</span><br />
11
				<span class="nom_retenu">nom retenu</span>
12
			</div>
13
		</div>
14
		<hr class="nettoyage">
15
		<i style="float:left;">Les résultats sont affichés par ordre alphabétique. Cliquez sur le num_nom ou sur le nom pour accéder à la fiche.</i>
69 delphine 16
		<table>
17
			<thead>
18
				<tr>
202 delphine 19
					<th title="Identifiant numérique du nom scientifique">num_nom</th>
246 delphine 20
					<th title="Identifiant numérique du nom scientifique retenu">num_nom_retenu</th>
69 delphine 21
					<th>Nom scientifique</th>
22
					<th>Auteur</th>
23
					<th>Année</th>
24
					<th>Référence bibliographique</th>
242 delphine 25
					<th>Présence</th>
69 delphine 26
					<th>Nom addendum</th>
27
				</tr>
28
			</thead>
29
			<tbody>
83 delphine 30
				<? foreach ($resultats as $resultat) : ?>
246 delphine 31
					<tr <?=($resultat['exclure_taxref'] == 0) ? 'class="transmis' : 'class="non_transmis' ?>
32
					<?=($resultat['num_nom'] == $resultat['num_nom_retenu']) ? ' nom_retenu"' : '"' ?>>
83 delphine 33
						<td><a href="<?=Recherche::getUrlFicheTaxon($resultat)?>"><?=$resultat['num_nom']?></a></td>
246 delphine 34
						<td><a href="<?=Recherche::getUrlFicheTaxon($resultat)?>"><?=$resultat['num_nom_retenu']?></a></td>
162 delphine 35
						<td><a href="<?=Recherche::getUrlFicheTaxon($resultat)?>"><?=$resultat['nom_sci']?></a>
36
							<? if ($resultat['nom_sci'] != '') : ?>
37
								<a href="<?=Recherche::getUrlRecherche($resultat['nom_sci'], $referentiel)?>">
38
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
39
								</a>
40
							<? endif; ?>
41
						</td>
42
						<td><?=$resultat['auteur']?>
43
							<? if ($resultat['auteur'] != '') : ?>
44
								<a href="<?=Recherche::getUrlRecherche('au:'.$resultat['auteur'], $referentiel)?>">
45
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
46
								</a>
47
							<? endif; ?>
48
						</td>
49
						<td><?=$resultat['annee']?>
50
							<? if ($resultat['annee'] != '') : ?>
51
								<a href="<?=Recherche::getUrlRecherche('an:'.$resultat['annee'], $referentiel)?>">
52
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
53
								</a>
54
							<? endif; ?>
55
						</td>
56
						<td><?=$resultat['biblio_origine']?>
57
							<? if ($resultat['biblio_origine'] != '') : ?>
58
								<a href="<?=Recherche::getUrlRecherche('bib:'.$resultat['biblio_origine'], $referentiel)?>">
59
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
60
								</a>
61
							<? endif; ?>
62
						</td>
242 delphine 63
						<td>
64
							<? if ($resultat['presence'] != '') : ?>
65
								<span title="<?=$valeur_presence[$resultat['presence']];?>"><?=$resultat['presence'];?></span>
66
								<a href="<?=Recherche::getUrlRecherche('pre:1', $referentiel)?>">
67
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
68
								</a>
69
							<? endif; ?>
70
						</td>
162 delphine 71
						<td><?=$resultat['nom_addendum']?>
72
							<? if ($resultat['nom_addendum'] != '') : ?>
242 delphine 73
								<a href="<?=Recherche::getUrlRecherche('mots:'.$resultat['nom_addendum'], $referentiel)?>">
162 delphine 74
									<img src="./interfaces/squelettes/css/referentiel/images/data_query.png" alt="rechercher"/>
75
								</a>
76
							<? endif; ?>
77
						</td>
83 delphine 78
					</tr>
79
				<? endforeach; ?>
74 delphine 80
			</tbody>
69 delphine 81
		</table>
202 delphine 82
		<?=$fragmenteur ?>
74 delphine 83
	<? endif; ?>
202 delphine 84
 
69 delphine 85
</div>
86
<!-- REF - FIN RESULTAT -->