Line 4... |
Line 4... |
4 |
<li class="actif"><span class="onglet">Tableau</span></li>
|
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>
|
5 |
<li class="inactif"><a class="onglet" onclick="chargerFormatObs('<?=$station_id?>', 'liste');return false;" href="#">Liste</a></li>
|
6 |
</ul>
|
6 |
</ul>
|
7 |
</div>
|
7 |
</div>
|
8 |
<div id="observations">
|
8 |
<div id="observations">
|
9 |
<table>
|
- |
|
10 |
<div id="pagination">
|
9 |
<div id="pagination"></div>
|
11 |
|
- |
|
12 |
</div>
|
10 |
<table class="obs-liste-conteneur">
|
13 |
<caption><h2><span id="obs-total"><?=$nbre_obs_total?></span> observations pour <?=(isset($commune) ? $commune : '?')?></h2></caption>
|
11 |
<caption><h2><span id="obs-total"><?=$nbre_obs_total?></span> observations pour <?=(isset($commune) ? $commune : '?')?></h2></caption>
|
14 |
<thead>
|
12 |
<thead>
|
15 |
<tr>
|
13 |
<tr>
|
16 |
<th>Nom</th><th>Date</th><th>Lieu</th><th>Observateur</th>
|
14 |
<th>Nom</th><th>Date</th><th>Lieu</th><th>Observateur</th>
|
17 |
</tr>
|
15 |
</tr>
|
18 |
</thead>
|
16 |
</thead>
|
19 |
<tbody>
|
17 |
<tbody id="obs-liste">
|
20 |
<? foreach ($observations as $obs) : ?>
|
18 |
<? foreach ($observations as $obs) : ?>
|
21 |
<tr>
|
19 |
<tr>
|
22 |
<td>
|
20 |
<td>
|
23 |
<? if (isset($obs['nn'])) : ?>
|
21 |
<? if (isset($obs['nn'])) : ?>
|
24 |
<a href="http://www.tela-botanica.org/nn<?=$obs['nn']?>" onclick="window.open(this.href); arreter(event); return false; "><?=$obs['nom']?></a>
|
22 |
<a href="http://www.tela-botanica.org/nn<?=$obs['nn']?>" onclick="window.open(this.href); arreter(event); return false; "><?=$obs['nom']?></a>
|