Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 334 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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