Subversion Repositories eFlore/Applications.cel

Rev

Rev 837 | 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="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">
841 jpm 9
		<div id="pagination"></div>
10
		<table class="obs-liste-conteneur">
837 jpm 11
			<caption><h2><span id="obs-total"><?=$nbre_obs_total?></span> observations pour <?=(isset($commune) ? $commune : '?')?></h2></caption>
521 jpm 12
			<thead>
468 jpm 13
				<tr>
521 jpm 14
					<th>Nom</th><th>Date</th><th>Lieu</th><th>Observateur</th>
468 jpm 15
				</tr>
521 jpm 16
			</thead>
841 jpm 17
			<tbody id="obs-liste">
521 jpm 18
				<? foreach ($observations as $obs) : ?>
19
					<tr>
545 jpm 20
						<td>&nbsp;
521 jpm 21
						<? if (isset($obs['nn'])) : ?>
22
							<a href="http://www.tela-botanica.org/nn<?=$obs['nn']?>" onclick="window.open(this.href); arreter(event); return false; "><?=$obs['nom']?></a>
23
						<? else : ?>
24
							<?=$obs['nom']?>
25
						<? endif; ?>
26
						</td>
545 jpm 27
						<td>&nbsp;<?=$obs['date']?></td>
28
						<td>&nbsp;<?=$obs['lieu']?></td>
29
						<td>&nbsp;<?=$obs['observateur']?></td>
521 jpm 30
					</tr>
31
				<? endforeach; ?>
32
			</tbody>
33
		</table>
34
		<? include(dirname(__FILE__).'/obs_msg_info.tpl.html') ?>
35
	</div>
479 jpm 36
</div>