Subversion Repositories eFlore/Applications.cel

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
521 jpm 1
<div class="info-bulle-contenu">
2
	<div class="onglets">
3
		<ul>
4
			<li class="actif"><span class="onglet">Tableau</span></li>
5
			<li class="inactif"><a class="onglet" onclick="chargerFormatObs('<?=$station_id?>', 'liste');return false;" href="#">Liste</a></li>
6
		</ul>
7
	</div>
8
	<div id="observations">
9
		<table>
837 jpm 10
			<div id="pagination">
11
 
12
			</div>
13
			<caption><h2><span id="obs-total"><?=$nbre_obs_total?></span> observations pour <?=(isset($commune) ? $commune : '?')?></h2></caption>
521 jpm 14
			<thead>
468 jpm 15
				<tr>
521 jpm 16
					<th>Nom</th><th>Date</th><th>Lieu</th><th>Observateur</th>
468 jpm 17
				</tr>
521 jpm 18
			</thead>
19
			<tbody>
20
				<? foreach ($observations as $obs) : ?>
21
					<tr>
545 jpm 22
						<td>&nbsp;
521 jpm 23
						<? if (isset($obs['nn'])) : ?>
24
							<a href="http://www.tela-botanica.org/nn<?=$obs['nn']?>" onclick="window.open(this.href); arreter(event); return false; "><?=$obs['nom']?></a>
25
						<? else : ?>
26
							<?=$obs['nom']?>
27
						<? endif; ?>
28
						</td>
545 jpm 29
						<td>&nbsp;<?=$obs['date']?></td>
30
						<td>&nbsp;<?=$obs['lieu']?></td>
31
						<td>&nbsp;<?=$obs['observateur']?></td>
521 jpm 32
					</tr>
33
				<? endforeach; ?>
34
			</tbody>
35
		</table>
36
		<? include(dirname(__FILE__).'/obs_msg_info.tpl.html') ?>
37
	</div>
479 jpm 38
</div>