Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev Author Line No. Line
149 jpm 1
<table id="ef-resultats-decomposition">
2
	<thead>
3
		<tr>
4
			<th id="col-ns">Nom scientifique</th>
5
			<th>Auteur</th>
6
			<th>Année</th>
7
			<th>Référence bibliographique</th>
8
			<th title="Commentaires nomenclaturaux ou taxonomiques concernant le nom scientifique">Nom addendum</th>
9
			<th title="Identifiant numérique du nom scientifique">N° nom</th>
10
		</tr>
11
	</thead>
12
	<tbody>
13
	<? $i = 1 ?>
14
	<? foreach ($noms as $nom) : ?>
15
		<tr
16
			class="<?=$nom['retenu'] === true ? 'retenu' : 'synonyme' ?>"
17
			title="Ligne #<?=$i++?>">
18
			<td>
19
				<a href="<?=$nom['urlFiche']?>"><?=$nom['nomSci']?></a>
20
			</td>
21
			<td><?=$nom['auteur']?></td>
22
			<td><?=$nom['annee']?></td>
23
			<td><?=$nom['biblio']?></td>
24
			<td><?=$nom['addendum']?></td>
25
			<td><?=$nom['nn']?></td>
26
		</tr>
27
	<? endforeach; ?>
28
	</tbody>
29
</table>