Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 334 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
239 aurelien 1
<div id="classification">
331 aurelien 2
	<h2>Taxons Supérieurs</h2>
334 aurelien 3
	<?php if($taxons_sup != array()) { ?>
331 aurelien 4
	<table class="liste_taxons_superieurs">
5
		<tr>
6
		<th>Rang</th><th>Nom Scientifique</th><th>Num Nom</th>
7
		</tr>
8
	<?php foreach($taxons_sup as $taxon) : ?>
9
		<tr>
456 delphine 10
			<td><?= $taxon['rang.libelle']  ?></td>
334 aurelien 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>
331 aurelien 15
			<td><?= $taxon['num_nom']  ?></td>
16
		</tr>
17
	<?php endforeach; ?>
18
	</table>
334 aurelien 19
	<?php } else { ?>
20
		<h3 class="aucune_info"> Aucun taxon supérieur référencé </h3>
21
	<?php } ?>
331 aurelien 22
 
23
	<h2>Taxons Inférieurs</h2>
334 aurelien 24
	<?php if($taxons_inf != array()) { ?>
331 aurelien 25
	<table class="liste_taxons_inferieurs">
26
		<tr>
27
		<th>Rang</th><th>Nom Scientifique</th><th>Num Nom</th>
28
		</tr>
29
	<?php foreach($taxons_inf as $taxon) : ?>
30
		<tr>
456 delphine 31
			<td><?= $taxon['rang.libelle']  ?></td>
334 aurelien 32
			<td>
33
				<a  title="Voir la fiche de ce nom" href="<?= $urls->obtenirUrlFiche($taxon['num_nom'],'nom_scientifique', $taxon['nom_sci']); ?>">
34
					<?= $taxon['nom_sci']  ?>
35
				</a>
36
			</td>
331 aurelien 37
			<td><?= $taxon['num_nom']  ?></td>
38
		</tr>
39
	<?php endforeach; ?>
40
	</table>
334 aurelien 41
	<?php } else { ?>
42
		<h3 class="aucune_info"> Aucun taxon inférieur référencé </h3>
43
	<?php } ?>
331 aurelien 44
	<div class="conteneur_lien_metadonnees">
45
		<?= $meta['titre']?>
46
		<span class="conteneur_lien_metadonnees">
47
			<a class="lien_metadonnees lien_popup" href="<?= $meta['url']; ?>">Voir toutes les metadonnées</a>
48
		</span>
49
	</div>
239 aurelien 50
</div>