Subversion Repositories eFlore/Applications.cel

Rev

Rev 837 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

<div class="info-bulle-contenu">
        <div class="onglets">
                <ul>
                        <li class="actif"><span class="onglet">Tableau</span></li>
                        <li class="inactif"><a class="onglet" onclick="chargerFormatObs('<?=$station_id?>', 'liste');return false;" href="#">Liste</a></li>
                </ul>
        </div>
        <div id="observations">
                <div id="pagination"></div>
                <table class="obs-liste-conteneur">
                        <caption><h2><span id="obs-total"><?=$nbre_obs_total?></span> observations pour <?=(isset($commune) ? $commune : '?')?></h2></caption>
                        <thead>
                                <tr>
                                        <th>Nom</th><th>Date</th><th>Lieu</th><th>Observateur</th>
                                </tr>
                        </thead>
                        <tbody id="obs-liste">
                                <? foreach ($observations as $obs) : ?>
                                        <tr>
                                                <td>&nbsp;
                                                <? if (isset($obs['nn'])) : ?>
                                                        <a href="http://www.tela-botanica.org/nn<?=$obs['nn']?>" onclick="window.open(this.href); arreter(event); return false; "><?=$obs['nom']?></a>
                                                <? else : ?>
                                                        <?=$obs['nom']?>
                                                <? endif; ?>
                                                </td>
                                                <td>&nbsp;<?=$obs['date']?></td>
                                                <td>&nbsp;<?=$obs['lieu']?></td>
                                                <td>&nbsp;<?=$obs['observateur']?></td>
                                        </tr>
                                <? endforeach; ?>
                        </tbody>
                </table>
                <? include(dirname(__FILE__).'/obs_msg_info.tpl.html') ?>
        </div>
</div>