Subversion Repositories eFlore/Applications.cel

Rev

Rev 501 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 501 Rev 507
Line 8... Line 8...
8
	<h2><?=count($observations)?> observations pour <?=(isset($commune) ? $commune : '?')?></h2>
8
	<h2><?=count($observations)?> observations pour <?=(isset($commune) ? $commune : '?')?></h2>
9
	<ol>
9
	<ol>
10
		<? foreach ($observations as $obs) : ?>
10
		<? foreach ($observations as $obs) : ?>
11
		<li>
11
		<li>
12
			<dl>
12
			<dl>
13
				<dt class="champ_nom_latin">Nom</dt><dd>
13
				<dt class="champ_nom_latin">Nom</dt>
-
 
14
				<dd>
-
 
15
				<? if (isset($obs['nn'])) : ?>
14
					<a href="http://www.tela-botanica.org/nn<?=$obs['nn']?>" onclick="window.open(this.href); arreter(event); return false; ">
16
					<a href="http://www.tela-botanica.org/nn<?=$obs['nn']?>" onclick="window.open(this.href); arreter(event); return false; "><?=$obs['nom']?></a>
-
 
17
				<? else : ?>
15
						<?=html_entity_decode($obs['nom'])?>
18
					<?=$obs['nom']?>
-
 
19
				<? endif; ?>
16
					</a></dd>
20
				</dd>
17
				<dt>Lieu</dt><dd><?=$obs['lieu']?></dd>
21
				<dt>Lieu</dt><dd><?=$obs['lieu']?></dd>
18
				<dt>PubliƩ par</dt><dd><?=$obs['observateur']?></dd>
22
				<dt>PubliƩ par</dt><dd><?=$obs['observateur']?></dd>
19
				<dt>Le</dt><dd><?=$obs['date']?></dd>
23
				<dt>Le</dt><dd><?=$obs['date']?></dd>
20
			</dl>
24
			</dl>
21
		</li>
25
		</li>