Subversion Repositories eFlore/Applications.cel

Rev

Rev 416 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 416 Rev 526
Line 2... Line 2...
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>
Line 5... Line 5...
5
		
5
		
6
		<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
-
 
7
		<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
6
		<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
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;
-
 
13
				font-size: 12px;
-
 
14
			}
-
 
15
			ul{
-
 
16
				list-style-type:none;
14
				font-size: 12px;}
17
			}
15
			#carte {
18
			.doublon{
-
 
19
				float:left;
-
 
20
			}
16
				width:100%;
21
			.doublon-liste{
-
 
22
				clear:left;
17
				height:100%;
23
			}
-
 
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>
18
		</style>
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>
Line 19... Line 30...
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) : ?>
-
 
36
			<li class="doublon-liste">
-
 
37
			<?php foreach ($doublon as $img) : ?>
-
 
38
				<ul class="doublon">
25
			<li>
39
					<li>Image : <?=$img['img_ordre']?></li>
-
 
40
					<li>Observation(s) : <?=implode(', ', $img['obs_ordre'])?></li>
26
			<?php foreach ($doublon as $img) : ?>
41
					<li><img src="<?=$img['url']?>" alt="Id #<?=$img['img_id']?>"/></li>
27
				<?=$img['num']?><img src="<?=$img['url']?>" />
42
				</ul>
28
			<?php endforeach; ?>
43
			<?php endforeach; ?>
29
			</li>
44
			</li>
-
 
45
		<?php endforeach; ?>
-
 
46
		</ul>
-
 
47
		<script type="text/javascript">
-
 
48
		//<![CDATA[
-
 
49
        	$(document).ready(function(){
-
 
50
				$('img').lazyload();
-
 
51
			});
30
		<?php endforeach; ?>
52
		//]]>
31
		</ul>
53
        </script>
32
	</body>
54
	</body>