-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (106 loc) · 4.28 KB
/
Copy pathindex.html
File metadata and controls
118 lines (106 loc) · 4.28 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
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Démonstration OVANI</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap toggles -->
<link href="css/bootstrap-toggle.min.css" rel="stylesheet">
<!-- Custom stylesheet -->
<link href="css/main.css" rel="stylesheet">
<link href="css/slider.css" rel="stylesheet">
<!-- 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.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 text-center">
<h1>Appels machines</h1>
</div>
<div class="col-md-6 text-center">
<h1>Réserve de phases</h1>
</div>
<div class="col-md-1">
<div class="row no-gutters header">
<div class="text-center">Machine</div>
</div>
<div class="column" id="col_names"></div>
</div>
<div class="col-md-5" id="machine_calls">
<div class="row no-gutters header">
<div class="col-md-8 text-center">File d'attente</div>
<div class="col-md-4 text-center">Zone de préparation</div>
</div>
<div class="row no-gutters" id="machines">
<div class="col-md-8 column" id="col_slots"></div>
<div class="col-md-4 column" id="col_prep"></div>
</div>
</div>
<div class="col-md-offset-1 col-md-5" id="reserve">
<div class="row header">
</div>
<div class="row">
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="infosOF" tabindex="-1" role="dialog" aria-labelledby="infosOFTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="infosOFTitle">Informations sur l'OF <span id="infosOFID">00000</span></h3>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img src="img/plan.png">
</div>
</div>
</div>
</div>
<div id="fixedbutton">
<button type="button" class="btn btn-secondary" onclick="refreshHeatmap()">Show heatmap</button>
</div>
<!-- jQuery + jQuery UI pour le drag -->
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<!--<script src="js/jquery.ui.touch-punch.min.js"></script>-->
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<!-- Bootstrap toggles -->
<script src="js/bootstrap-toggle.min.js"></script>
<!-- heatmap.js -->
<script src="js/heatmap.min.js"></script>
<!-- Custom scripts -->
<script src="js/drag.js"></script>
<script src="js/main.js"></script>
<!-- Start of StatCounter Code for Default Guide -->
<script type="text/javascript">
var sc_project = 11632786;
var sc_invisible = 1;
var sc_security = "67dd6256";
</script>
<script type="text/javascript"
src="https://www.statcounter.com/counter/counter.js"
async></script>
<noscript>
<div class="statcounter"><a title="Web Analytics
Made Easy - StatCounter" href="http://statcounter.com/"
target="_blank"><img class="statcounter"
src="//c.statcounter.com/11632786/0/67dd6256/1/" alt="Web
Analytics Made Easy - StatCounter"></a></div>
</noscript>
<!-- End of StatCounter Code for Default Guide -->
</body>
</html>