Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 468 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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