Subversion Repositories Applications.referentiel

Rev

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