-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (85 loc) · 3.4 KB
/
Copy pathindex.html
File metadata and controls
117 lines (85 loc) · 3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Flickr par commune</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="http://code.jquery.com/jquery-2.2.2.js"></script>
<script src="script/jquery-ui.js"></script>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">
<script type="text/javascript" src="script/bootstrap.js"></script>
<script type="text/javascript" src="script/bootstrap.min.js"></script>
<!-- CSS perso ?-->
<!-- Affichage table -->
<script type="text/javascript" src="script/jquery.dataTables.min.js"></script>
<link rel="stylesheet" href="css/jquery.dataTables.min.css" />
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" />
<!-- Notre script -->
<script type="text/javascript" src="script/notreScriptJquery.js"></script>
<!-- Tabs JQuery UI -->
<script type="text/javascript">
$(function() {
$( "#tabs" ).tabs();
});
</script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Tabs JQuery -->
</head>
<body>
<div class="container">
<div id="commWrap">
<form id="commForm">
<h1 id="commLabel">Entrez une commune</h1>
<input id="commune" type="text" name="commune"><br/><br/><br/>
<h3 style="display : inline">Nombre de photos :</h3>
<input id="photoNb" type="number" name="rows" min="1" value="1"><br/><br/>
<h4 style="display : inline">Visualiser les photos à partir de : <input type="text" id="datepicker"></h4> <br/><br/>
<button id="search" type="button" class="btn btn-default" aria-label="Left Align">
Rechercher <span class="glyphicon glyphicon-search" aria-hidden="true"></span>
</button>
</form>
<br/><br/>
<div id="tabs">
<ul>
<li><a href="#tabs-1">Photos</a></li>
<li><a href="#tabs-2">Tableau</a></li>
</ul>
<div id="tabs-1">
<!--
<p> Vue photo </p>
<div id="dialog" title="Oops...">
Aucune photo pour cette commune
</div>
-->
</div>
<div id="tabs-2">
<p> Vue tableau </p>
<table id="photos" class="display" width="100%" cellspacing="0">
<thead>
<tr>
<th>Photo</th>
<th>Nom</th>
<th>Heure</th>
<th>ID photographe</th>
<th>Position de la photo</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
</body>
</html>