Subversion Repositories eFlore/Applications.cel

Rev

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

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