Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
239 aurelien 1
<div id="classification">
468 delphine 2
	<h2>Place du taxon dans la classification</h2>
331 aurelien 3
	<table class="liste_taxons_superieurs">
4
		<tr>
468 delphine 5
			<th>Rang</th><th>Nom Scientifique</th><th>Num Nom</th>
331 aurelien 6
		</tr>
468 delphine 7
		<?php if($taxons_sup != array()) { ?>
8
			<?php foreach($taxons_sup as $taxon) : ?>
9
				<tr>
10
					<td><?= $taxon['rang.libelle'] ?></td>
11
					<td><a title="Voir la fiche de ce nom" href="<?= $urls->obtenirUrlFiche($taxon['num_nom'],'nom_scientifique', $taxon['nom_sci']); ?>">
12
							<?= $taxon['nom_sci'] ?>
13
						</a>
14
					</td>
15
					<td><?= $taxon['num_nom'] ?></td>
16
				</tr>
17
			<?php endforeach; ?>
18
		<?php } ?>
19
		<tr class='surlignage'>
20
			<td><?= $taxon_courant['rang.libelle'] ?></td>
21
			<td><?= $taxon_courant['nom_sci'] ?></td>
22
			<td><?= $taxon_courant['num_nom'] ?></td>
331 aurelien 23
		</tr>
468 delphine 24
		<?php if($taxons_inf != array()) { ?>
25
			<?php foreach($taxons_inf as $taxon) : ?>
26
				<tr>
27
					<td><?= $taxon['rang.libelle'] ?></td>
28
					<td>
29
						<a  title="Voir la fiche de ce nom" href="<?= $urls->obtenirUrlFiche($taxon['num_nom'],'nom_scientifique', $taxon['nom_sci']); ?>">
30
							<?= $taxon['nom_sci'] ?>
31
						</a>
32
					</td>
33
					<td><?= $taxon['num_nom'] ?></td>
34
				</tr>
35
			<?php endforeach; ?>
36
		<?php } ?>
331 aurelien 37
	</table>
38
	<div class="conteneur_lien_metadonnees">
39
		<?= $meta['titre']?>
40
		<span class="conteneur_lien_metadonnees">
41
			<a class="lien_metadonnees lien_popup" href="<?= $meta['url']; ?>">Voir toutes les metadonnées</a>
42
		</span>
43
	</div>
239 aurelien 44
</div>