Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

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