-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (79 loc) · 1.94 KB
/
index.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
title: CollabJam Study - Visual Tacton Exploration
---
<!DOCTYPE html>
<html>
<meta charset="utf-8" />
<link rel="stylesheet" href="./assets/css/main.css" />
<script src="./assets/script/jquery-3.7.1.min.js"></script>
<script src="./assets//script/datatables.js"></script>
<link href="./assets/css//datatables.css" rel="stylesheet" />
<title>Home</title>
<head> </head>
<body>
<h1>CollabJam Study 2024 - Tactons</h1>
<table id="tt">
{% for row in site.data.metadata_w_img_renamed %} {% if forloop.first %}
<thead>
<tr>
{% for pair in row %}
<th>{{ pair[0] }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% endif %} {% tablerow pair in row %} {{ pair[1] }} {% endtablerow %}
{% endfor %}
</tbody>
</table>
<!-- {% for tacton in site.data.metadata %}
<div class="tacton-display">
<h2>{{tacton.name}} - {{tacton.iteration}} (Team {{tacton.Team}})</h2>
<div class="row">
<div class="column">
<div>
Prompt:{{tacton.prompt}}
</div>
<div>
Intention:{{tacton.intention}}
</div>
<div>
Notes: {{tacton.notes}}
</div>
</div>
<div class="column">
<img src="assets/img/{{tacton.uuid}}.png" alt="" />
</div>
</div>
</div>
{% endfor %} -->
<script>
let table = new DataTable("#tt", {
columnDefs: [
{
target: 0,
visible: false,
},
{
//room
target: 1,
visible: false,
},
],
paging: false,
rowGroup: {
dataSrc: "Team",
},
layout: {
topStart: {
searchBuilder: {},
buttons: ['csv']
}
},
responsive: true,
fixedHeader: true,
colReorder: true
});
</script>
</body>
</html>