Subversion Repositories eFlore/Applications.cel

Rev

Rev 526 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 526 Rev 530
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
		<style type="text/css">
7
		<style type="text/css">
8
			html, body{
8
			html, body{
9
				margin:0;
9
				margin:0;
10
				padding:0;
10
				padding:0;
11
				height: 100%;
11
				height: 100%;
12
				font-family: Arial;
12
				font-family: Arial;
13
				font-size: 12px;
13
				font-size: 12px;
14
			}
14
			}
15
			ul{
15
			ul{
16
				list-style-type:none;
16
				list-style-type:none;
17
			}
17
			}
18
			.doublon{
18
			.doublon{
19
				float:left;
19
				float:left;
20
			}
20
			}
21
			.doublon-liste{
21
			.doublon-liste{
22
				clear:left;
22
				clear:left;
23
			}
23
			}
24
		</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
		
25
		
27
		<!-- JavaScript -->
26
		<!-- JavaScript -->
28
		<script type="text/javascript" src="http://www.tela-botanica.org/commun/jquery/1.4.4/jquery-1.4.4.min.js"></script>
27
		<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>
28
		<script type="text/javascript" src="http://www.tela-botanica.org/commun/jquery/lazyload/1.5.0/jquery.lazyload.mini.js"></script>
-
 
29
		<script type="text/javascript">
-
 
30
        	$(document).ready(function(){
-
 
31
				$("img").lazyload();
-
 
32
			});
-
 
33
        </script>
30
	</head>
34
	</head>
31
 
35
 
32
	<body>
36
	<body>
33
		<h1>Images en doublon - <?=$utilisateur?></h1>
37
		<h1><?=count($doublons)?> images en doublon - <?=$utilisateur?></h1>
34
		<ul>
38
		<ul>
35
		<?php foreach ($doublons as $doublon) : ?>
39
		<?php foreach ($doublons as $doublon) : ?>
36
			<li class="doublon-liste">
40
			<li class="doublon-liste">
37
			<?php foreach ($doublon as $img) : ?>
41
			<?php foreach ($doublon as $img) : ?>
38
				<ul class="doublon">
42
				<ul class="doublon">
39
					<li>Image : <?=$img['img_ordre']?></li>
43
					<li>Image : <?=$img['img_ordre']?></li>
40
					<li>Observation(s) : <?=implode(', ', $img['obs_ordre'])?></li>
44
					<li>Observation(s) : <?=implode(', ', $img['obs_ordre'])?></li>
41
					<li><img src="<?=$img['url']?>" alt="Id #<?=$img['img_id']?>"/></li>
45
					<li><img src="<?=$img['url']?>" alt="Id #<?=$img['img_id']?>"/></li>
42
				</ul>
46
				</ul>
43
			<?php endforeach; ?>
47
			<?php endforeach; ?>
44
			</li>
48
			</li>
45
		<?php endforeach; ?>
49
		<?php endforeach; ?>
46
		</ul>
50
		</ul>
47
		<script type="text/javascript">
-
 
48
		//<![CDATA[
-
 
49
        	$(document).ready(function(){
-
 
50
				$('img').lazyload();
-
 
51
			});
-
 
52
		//]]>
-
 
53
        </script>
-
 
54
	</body>
51
	</body>
55
</html>
52
</html>