Subversion Repositories eFlore/Applications.cel

Rev

Rev 507 | Rev 545 | Go to most recent revision | Details | Compare with Previous | 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="inactif"><a class="onglet" onclick="chargerFormatObs('<?=$station_id?>', 'tableau');return false;" href="#">Tableau</a></li>
5
			<li class="actif"><span class="onglet">Liste</span></li>
6
		</ul>
7
	</div>
8
	<div id="observations">
9
		<h2><?=count($observations)?> observations pour <?=(isset($commune) ? $commune : '?')?></h2>
10
		<ol>
11
			<? foreach ($observations as $obs) : ?>
12
			<li>
13
				<dl>
14
					<dt class="champ_nom_latin">Nom</dt>
15
					<dd>
16
					<? if (isset($obs['nn'])) : ?>
17
						<a href="http://www.tela-botanica.org/nn<?=$obs['nn']?>" onclick="window.open(this.href); arreter(event); return false; "><?=$obs['nom']?></a>
18
					<? else : ?>
19
						<?=$obs['nom']?>
20
					<? endif; ?>
21
					</dd>
22
					<dt>Lieu</dt><dd><?=$obs['lieu']?></dd>
23
					<dt>Publié par</dt><dd><?=$obs['observateur']?></dd>
24
					<dt>Le</dt><dd><?=$obs['date']?></dd>
25
				</dl>
26
			</li>
27
			<? endforeach; ?>
28
		</ol>
29
		<? include(dirname(__FILE__).'/obs_msg_info.tpl.html') ?>
30
	</div>
468 jpm 31
</div>