Subversion Repositories Applications.referentiel

Rev

Rev 74 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
69 delphine 1
<!-- REF - DEBUT RESULTAT -->
2
<div id="ref-resultat-recherche">
3
	<?=$fragmenteur;?>
4
	<?php if (isset($resultats)) : ?>
5
		<table>
6
			<thead>
7
				<tr>
8
					<th>Identifiant numérique du nom scientifique</th>
9
					<th>Nom scientifique</th>
10
					<th>Auteur</th>
11
					<th>Année</th>
12
					<th>Référence bibliographique</th>
13
					<th>Nom addendum</th>
14
				</tr>
15
			</thead>
16
			<tbody>
17
				<?php foreach ($resultats as $resultat) : ?>
18
					<?if ($resultat['num_nom'] == $resultat['num_nom_retenu']) : ?>
19
						<tr class='nom_retenu'>
20
							<td><?=$resultat['num_nom'];?></td>
21
							<td><?=$resultat['nom_complet'];?></td>
22
							<td><?=$resultat['auteur'];?></td>
23
							<td><?=$resultat['annee'];?></td>
24
							<td><?=$resultat['biblio_origine'];?></td>
25
							<td><?=$resultat['nom_addendum'];?></td>
26
						</tr>
27
					<? else : ?>
28
						<tr>
29
							<td><?=$resultat['num_nom'];?></td>
30
							<td><?=$resultat['nom_complet'];?></td>
31
							<td><?=$resultat['auteur'];?></td>
32
							<td><?=$resultat['annee'];?></td>
33
							<td><?=$resultat['biblio_origine'];?></td>
34
							<td><?=$resultat['nom_addendum'];?></td>
35
						</tr>
36
					<?endif;?>
37
				<?php endforeach; ?>
38
				</tbody>
39
		</table>
40
	<?php endif; ?>
41
</div>
42
<!-- REF - FIN RESULTAT -->