Subversion Repositories eFlore/Applications.cel

Rev

Rev 3158 | Rev 3195 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3122 delphine 1
<!DOCTYPE html>
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
  <head>
4
	<title>Gestion des widgets de saisie du CeL</title>
5
 
6
	<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
7
	<meta http-equiv="Content-style-type" content="text/css" />
8
	<meta http-equiv="Content-script-type" content="text/javascript" />
9
	<meta http-equiv="Content-language" content="fr" />
10
 
11
	<meta name="revisit-after" content="15 days" />
12
    <meta name="robots" content="index,follow" />
13
    <meta name="author" content="Tela Botanica" />
14
    <meta name="keywords" content="Tela Botanica, CEL" />
15
    <meta name="description" content="Gestion des widgets de saisie du carnet en ligne" />
16
	<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
17
 
18
	<!-- OpenGraph pour Facebook, Pinterest, Google+ -->
19
	<meta property="og:type" content="website" />
20
	<meta property="og:title" content="Gestion des widgets de saisie du CeL" />
21
	<meta property="og:site_name" content="Tela Botanica" />
22
	<meta property="og:description" content="Gestion des widgets de saisie du Carnet en Ligne" />
3158 delphine 23
	<meta property="og:image" content="https://resources.tela-botanica.org/tb/img/256x256/carre_englobant.png" />
3122 delphine 24
	<meta property="og:image:type" content="image/png" />
25
	<meta property="og:image:width" content="256" />
26
	<meta property="og:image:height" content="256" />
27
	<meta property="og:locale" content="fr_FR" />
28
 
29
	<!-- Favicones -->
3158 delphine 30
	<link rel="shortcut icon" type="image/x-icon" href="https://resources.tela-botanica.org/tb/img/16x16/favicon.ico" />
3164 idir 31
 
3122 delphine 32
	<!-- Jquery -->
3164 idir 33
	<script type="text/javascript" src="http://localhost/commun/jquery/1.7.1/jquery-1.7.1.min.js"></script>
34
	<script type="text/javascript" src="http://localhost/commun/jquery/jquery-ui/1.8.17/js/jquery-ui-1.8.17.custom.min.js"></script>
35
	<script type="text/javascript" src="http://localhost/commun/jquery/jquery-ui/1.8.17/js/jquery.ui.datepicker-fr.js"></script>
36
	<script type="text/javascript" src="http://localhost/commun/jquery/validate/1.9.0/jquery.validate.js"></script>
37
	<script type="text/javascript" src="http://localhost/commun/jquery/validate/1.9.0/messages_fr.js"></script>
38
	<script type="text/javascript" src="http://localhost/commun/jquery/form/2.95/jquery.form.min.js"></script>
39
	<script type="text/javascript" src="http://localhost/commun/bootstrap/3.1.0/js/bootstrap.min.js"></script>
3122 delphine 40
 
41
	<!-- Barre de navigation -->
42
	<?php if ($bar !== false): ?>
3164 idir 43
		<script src="<?php echo $url_script_navigation; ?>"></script>
3122 delphine 44
	<?php endif; ?>
3164 idir 45
 
46
 
3122 delphine 47
	<!-- CSS -->
3164 idir 48
	<link href="http://localhost/commun/jquery/jquery-ui/1.8.18/css/smoothness/jquery-ui-1.8.18.custom.css" rel="stylesheet" type="text/css" media="screen" />
49
	<!-- <link href="http://localhost/commun/bootstrap/2.0.2/css/bootstrap.min.css" rel="stylesheet" type="text/css" media="screen" /> -->
50
	<link href="<?php echo $url_base; ?>modules/manager/squelettes/css/manager.css" rel="stylesheet" type="text/css" media="screen" />
51
	<link rel="stylesheet" type="text/css" href="http://localhost/commun/bootstrap/3.1.0/css/bootstrap.min.css" />
52
	<link id="telabotanica-style-css" rel="stylesheet" href="https://www.tela-botanica.org/wp-content/themes/telabotanica/dist/bundle.css?ver=4.9.7" type="text/css" media="all">
53
 
3122 delphine 54
	<!--  Google Analytics -->
55
	<?php if($prod): ?>
56
		<?php include "analytics.html"; ?>
57
	<?php endif; ?>
58
  </head>
59
 
3164 idir 60
   <body>
61
        <?php if ($bar !== false): ?>
62
                <div id="tb-navigation" data-courant="widget-cel-export" data-squelette="bootstrap3" data-mode="prod">
63
                </div>
64
                <br/>
65
        <?php endif; ?>
3122 delphine 66
 
67
	<div id="zone-appli" class="container">
68
		<h1 id="widget-titre" class="widget-titre"> Gestion des widgets de saisie du CEL</h1>
69
		<ul>
3164 idir 70
		<?php foreach ($donnees['widget'] as $donnee) { ?>
3122 delphine 71
		 	<li class="component-tools-item">
3164 idir 72
				<?php echo '<img class="component-tools-item-icon" src="'.$donnee['logo'].'" alt="'.$donnee['projet'].'" style="width:10rm;">';?>
3122 delphine 73
				<div style="">
74
					<h4 class="component-tools-item-title">
3164 idir 75
						<a href="https://www.tela-botanica.org/flore/" target=""><?= $donnee['projet']." : ".$donnee['titre']; ?></a>
3122 delphine 76
					</h4>
77
					<div class="component component-buttons as-seamless" style="float:right;">
3164 idir 78
						<a class="button orange" href="<?php echo $widgetUrlTpl; ?>?mode=modification&projet=<?php echo $donnee['projet']; ?>&langue=<?php echo $donnee['langue']; ?>" target="" title="Espace projets">
3122 delphine 79
						<span class="button-text">Modifier le widget</span>
80
						</a>
3164 idir 81
						<a class="button standard" href="<?php echo $widgetUrlTpl; ?>?mode=creation&projet=<?php echo $donnee['projet']; ?>&langue=<?php echo $donnee['langue']; ?>" target="" title="Créer un projet">
3122 delphine 82
						<span class="button-text">Créer à partir</span>
83
						</a>
84
					</div>
85
				</div>
3164 idir 86
				<div class="component-tools-item-description"><?php echo $donnee['description']; ?></div>
3122 delphine 87
				<div class="component-tools-item-link">
3164 idir 88
					<a href="https://localhost/widget:cel:saisie?projet=<?php echo $donnee['projet']; ?>" target="" style="color: #e16e37">
3122 delphine 89
						<span>Saisie</span>
90
					</a>
3164 idir 91
					<a href="http://localhost/widget:cel:cartoPoint?projet=<?php echo $donnee['projet']; ?>" target="" style="color: #918a6f">
3122 delphine 92
						<span>Carto</span>
93
					</a>
3164 idir 94
					<a href="http://localhost/widget:cel:photo?projet=<?php echo $donnee['projet']; ?>" target="" style="color: #964e75">
3122 delphine 95
						<span>Photo</span>
96
					</a>
3164 idir 97
					<a href="http://localhost/widget:cel:observation?projet=<?php echo $donnee['projet']; ?>" target="" style="color: #b2cb43">
3122 delphine 98
						<span>Observation</span>
99
					</a>
3164 idir 100
					<a href="http://localhost/widget:cel:export?projet=<?php echo $donnee['projet']; ?>" target="" style="color: #009fb8">
3122 delphine 101
						<span>Export</span>
102
					</a>
3164 idir 103
					<a href="http://localhost/appli:pictoflora?projet=<?php echo $donnee['projet']; ?>" target="" style="color: #927fa2">
3122 delphine 104
						<span>PictoFlora</span>
105
					</a>
3164 idir 106
					<a href="http://localhost/appli:identiplante?projet=<?php echo $donnee['projet']; ?>" target="" style="color: #f25a52">
3122 delphine 107
						<span>IdentiPlante</span>
108
					</a>
109
				</div>
110
			</li>
111
		<?php } ?>
112
		</ul>
113
		<div class="component component-buttons as-seamless">
3164 idir 114
			<a class="button standard" href="<?php echo $widgetUrlTpl; ?>?mode=creation" target="_blank" title="">
3122 delphine 115
				<span class="button-text">Créer un nouveau widget</span>
116
			</a>
117
		</div>
118
	</div>
119
  </body>
3164 idir 120
</html>