Rev 468 | Blame | Last modification | View Log | RSS feed
<div class="onglets">
<ul>
<li class="onglet-actif">Tableau</li>
<li class="onglet-inactif"><a onclick="chargerFormatObs('<?=$station_id?>', 'liste');return false;" href="#">Liste</a></li>
</ul>
</div>
<div id="observations">
<table>
<caption><h2><?=count($observations)?> observations pour <?=(isset($commune) ? $commune : '?')?></h2></caption>
<thead>
<tr>
<th>Nom</th><th>Date</th><th>Lieu</th><th>Observateur</th>
</tr>
</thead>
<tbody>
<? foreach ($observations as $obs) : ?>
<tr>
<td><a href="http://www.tela-botanica.org/nn<?=$obs['nn']?>" onclick="window.open(this.href); arreter(event); return false; "><?=$obs['nom']?></a></td>
<td><?=$obs['date']?></td>
<td><?=$obs['lieu']?></td>
<td><?=$obs['observateur']?></td>
</tr>
<? endforeach; ?>
</tbody>
</table>
</div>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function() {
$("#observations table").tablesorter();
});
//]]>
</script>