Subversion Repositories eFlore/Applications.cel

Rev

Rev 416 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 416 Rev 526
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml">
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
	<head>
3
	<head>
4
		<title>Images en doublon - <?=$utilisateur?></title>
4
		<title>Images en doublon - <?=$utilisateur?></title>
5
		
5
		
6
		<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
6
		<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
7
		<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
-
 
8
		<style type="text/css">
7
		<style type="text/css">
9
			html, body {
8
			html, body{
10
				margin:0;
9
				margin:0;
11
				padding:0;
10
				padding:0;
12
				height: 100%;
11
				height: 100%;
13
				font-family: Arial;
12
				font-family: Arial;
14
				font-size: 12px;}
13
				font-size: 12px;
-
 
14
			}
-
 
15
			ul{
-
 
16
				list-style-type:none;
-
 
17
			}
15
			#carte {
18
			.doublon{
16
				width:100%;
19
				float:left;
-
 
20
			}
-
 
21
			.doublon-liste{
17
				height:100%;
22
				clear:left;
-
 
23
			}
18
		</style>
24
		</style>
-
 
25
		<link rel="stylesheet" type="text/css" href="http://www.tela-botanica.org/commun/jquery/fancybox/1.3.2/jquery.fancybox-1.3.2.css" media="screen" />
-
 
26
		
-
 
27
		<!-- JavaScript -->
-
 
28
		<script type="text/javascript" src="http://www.tela-botanica.org/commun/jquery/1.4.4/jquery-1.4.4.min.js"></script>
-
 
29
		<script type="text/javascript" src="http://www.tela-botanica.org/commun/jquery/fancybox/1.3.2/jquery.fancybox-1.3.2.pack.js"></script>
19
	</head>
30
	</head>
20
 
31
 
21
	<body>
32
	<body>
22
		<h1>Images en doublon - <?=$utilisateur?></h1>
33
		<h1>Images en doublon - <?=$utilisateur?></h1>
23
		<ul>
34
		<ul>
24
		<?php foreach ($doublons as $doublon) : ?>
35
		<?php foreach ($doublons as $doublon) : ?>
25
			<li>
36
			<li class="doublon-liste">
26
			<?php foreach ($doublon as $img) : ?>
37
			<?php foreach ($doublon as $img) : ?>
-
 
38
				<ul class="doublon">
-
 
39
					<li>Image : <?=$img['img_ordre']?></li>
-
 
40
					<li>Observation(s) : <?=implode(', ', $img['obs_ordre'])?></li>
27
				<?=$img['num']?><img src="<?=$img['url']?>" />
41
					<li><img src="<?=$img['url']?>" alt="Id #<?=$img['img_id']?>"/></li>
-
 
42
				</ul>
28
			<?php endforeach; ?>
43
			<?php endforeach; ?>
29
			</li>
44
			</li>
30
		<?php endforeach; ?>
45
		<?php endforeach; ?>
31
		</ul>
46
		</ul>
-
 
47
		<script type="text/javascript">
-
 
48
		//<![CDATA[
-
 
49
        	$(document).ready(function(){
-
 
50
				$('img').lazyload();
-
 
51
			});
-
 
52
		//]]>
-
 
53
        </script>
32
	</body>
54
	</body>
33
</html>
55
</html>