Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 337 → Rev 338

/trunk/modules/fiche/squelettes/fiche_nomenclature.tpl.html
1,5 → 1,5
<div id="nomenclature">
<h3>Synonymes</h3>
<h2>Synonymes</h2>
<?php if(is_array($synonymes['noms']) && count($synonymes['noms']) > 0) { ?>
<ul>
<?php foreach ($synonymes['noms'] as $id => $synonyme) : ?>
15,7 → 15,7
<?php } else { ?>
<h3 class="aucune_info"> Aucun synonyme référencé pour ce nom </h3>
<?php } ?>
<h3>Flores</h3>
<h2>Flores</h2>
<?php if(is_array($flores_synonymes) && count($flores_synonymes) > 0) { ?>
<ul>
<?php foreach ($flores_synonymes as $num_nom_syn => $infos_flore) : ?>
22,9 → 22,9
<?php foreach ($infos_flore as $code => $flore) : ?>
<li class="item_nomenclature">
<div>
<?= $flore['nom_flore'] ?><br />
Remarque : <?= $flore['id'] ?><br />
Nom Scientifique : <?= $flore['nom_sci'] ?><br />
Dans la flore <em><?= $flore['nom_flore'] ?></em>,<br />
ce taxon porte le nom de <em><?= $flore['nom_sci'] ?></em>
et le code <b><?= $flore['id'] ?></b><br />
</div>
</li>
<?php endforeach; ?>
/trunk/modules/fiche/squelettes/fiche_synthese.tpl.html
22,18 → 22,18
<a class="lien-onglet-synthese" href="<?=$url;?>classification">Classification</a>
</h3>
<div id="contenu-0" class="contenu">
<?php if($classification['taxons_sup'] != array()) { ?>
<h4>Taxons supérieurs</h4>
<h4>Taxons supérieurs</h4>
<?php if($classification['taxons_sup'] != array()) { ?>
<?php foreach($classification['taxons_sup'] as $taxon) : ?>
<div><?= $taxon['rang']; ?> : <?= $taxon['nom_sci']; ?> (<?= $taxon['num_nom']; ?>)</div>
<div><?= $taxon['rang']; ?> : <?= $taxon['nom_sci']; ?></div>
<?php endforeach; ?>
<?php } else { ?>
<div class="aucune_info"> Aucun taxon supérieur référencé </div>
<?php } ?>
<h4>Taxons inférieurs</h4>
<?php if($classification['taxons_inf'] != array()) { ?>
<h4>Taxons inférieurs</h4>
<?php foreach($classification['taxons_inf'] as $taxon) : ?>
<div><?= $taxon['rang']; ?> : <?= $taxon['nom_sci']; ?> (<?= $taxon['num_nom']; ?>)</div>
<div><?= $taxon['rang']; ?> : <?= $taxon['nom_sci']; ?></div>
<?php endforeach; ?>
<?php } else { ?>
<div class="aucune_info"> Aucun taxon inférieur référencé </div>