Subversion Repositories eFlore/Applications.cel-consultation

Rev

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

Rev Author Line No. Line
2 aurelien 1
<!-- CEL_CONSULTATION - DEBUT RESULTAT IMAGES -->
2
<div id="consultation_liste_images">
3
    <?php if (isset($images)) : ?>
4
    <ul class="images_liste">
5
    <?php foreach ($images as $image) : ?>
6
    <!-- BEGIN TB_IMG -->
7
        <li>
8
            <a href="<?= $image['url_image_l']; ?>">
9
                <img height="300px" src="<?= $image['url_image_m']; ?>" />
10
            </a>
11
            <dl class="image_information">
12
            	<dt>Taxon</dt>
13
				<dd><?= $image['nom_ret'] ?></dd>
14
 
15
            	<dt>Localisation</dt>
16
				<dd><?= $image['location'].' ('.$image['id_location'].')'; ?></dd>
17
 
18
				<dt>Transmis le </dt>
19
				<dd><?= $image['date_transmission'] ?></dd>
20
            </dl>
21
    	</li>
22
    <!-- END TB_IMG -->
23
    <?php endforeach; ?>
24
    </ul>
25
    <?php endif; ?>
26
</div>
27
 
28
<hr class="nettoyage" />
29
<!-- CEL_CONSULTATION - FIN RESULTAT IMAGES -->