-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathe4s_deployment.html
68 lines (61 loc) · 2.08 KB
/
e4s_deployment.html
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
<html><body>
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.21/css/jquery.dataTables.min.css">
<table id="example" class="display" style="width:100%">
<thead>
<tr>
<th>Institution</th>
<th>E4S Deployment</th>
<th>Product</th>
<th>Version</th>
<th>Compiler</th>
<th>Architecture</th>
<th>Variants</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Institution</th>
<th>E4S Deployment</th>
<th>Product</th>
<th>Version</th>
<th>Compiler</th>
<th>Architecture</th>
<th>Variants</th>
</tr>
</tfoot>
</table>
<!-- Javascript -->
<script src="assets/js/jquery-3.7.1.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/jquery.backstretch.min.js"></script>
<script src="assets/js/wow.min.js"></script>
<script src="assets/js/retina-1.1.0.min.js"></script>
<script src="assets/js/scripts.js"></script>
<script src="https://cdn.datatables.net/1.10.21/js/jquery.dataTables.min.js"></script>
<script>
$(document).ready(function() {
var table = $('#example').DataTable( {
"ajax": "./E4S-Deployments.yml",
"autoWidth": false,
"columns": [
/*{
"className": 'details-control',
"orderable": false,
"data": null,
"defaultContent": ''
},*/
{ "data": "Institution" },
{ "data": "E4S Deployment" },
{ "data": "Product" },
{ "data": "Version" },
{ "data": "Compiler"},
{ "data": "Architecture" },
{ "data": "Variants", "width": "5%" }
/*{ "data": "Architecture" }*/
],
"order": [[2, 'asc']],
"pageLength": 10000
} );
} );
</script>
</body></html>