Subversion Repositories eFlore/Applications.cel-consultation

Rev

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

<!-- CEL_CONSULTATION - DEBUT RESULTAT IMAGES -->
<div id="consultation_liste_images">
    <?php if (isset($images)) : ?>
    <ul class="images_liste">
    <?php foreach ($images as $image) : ?>
    <!-- BEGIN TB_IMG -->
        <li>
            <a href="<?= $image['url_image_l']; ?>">
                <img height="300px" src="<?= $image['url_image_m']; ?>" />
            </a>
            <dl class="image_information">
                <dt>Taxon</dt>
                                <dd><?= $image['nom_ret'] ?></dd>
                                
                <dt>Localisation</dt>
                                <dd><?= $image['location'].' ('.$image['id_location'].')'; ?></dd>
                                
                                <dt>Transmis le </dt>
                                <dd><?= $image['date_transmission'] ?></dd>     
            </dl>
        </li>
    <!-- END TB_IMG -->
    <?php endforeach; ?>
    </ul>
    <?php endif; ?>
</div>

<hr class="nettoyage" />
<!-- CEL_CONSULTATION - FIN RESULTAT IMAGES -->