-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtemplate.html
More file actions
executable file
·130 lines (101 loc) · 2.82 KB
/
template.html
File metadata and controls
executable file
·130 lines (101 loc) · 2.82 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
119
120
121
122
123
124
125
126
127
128
129
130
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="stylesheets/app-58bcd06cc2a0e8bb2478.css">
<style>
table {
width: 100%;
table-layout: auto;
}
table .absorbing-column {
width: 100%;
}
th {
padding-left: 0px;
font-weight: bold;
}
td {
vertical-align: top;
}
.mention-row {
/* outline-style: solid;
outline-color: rgba(100, 180, 250, 0.3); */
background-color: rgba(100, 180, 250, 0.3);
}
.meta-data-name {
min-width: 150px !important;
padding-right: 20px;
}
.meta-data-time {
min-width: 75px !important;
padding-right: 20px;
}
.message-mine {
font-weight: bold;
}
.message-cell {
display: block;
border-radius: 10px;
background: #F5F5F5;
padding: 5;
margin: 2;
}
blockquote {
width: 95%;
border-left: 4px solid #929596;
margin: 1em 0 1em .5em;
padding-left: 30px;
}
spark-mention[data-object-type="person"] {
color: #929596;
}
.spark-contact {
color: #929596;
}
spark-mention[data-group-type="all"] {
color: #0ac391;
}
summary {
font-size: 24px;
}
</style>
<title>Webex Messaging Activity Report</title>
</head>
<body id="activities">
<div class="center-text">
<h1>Webex Messaging Activity Report: ({{ startDate }} - {{ endDate }})</h1>
</div>
<div class="activity-list">
# macro roomIntro( name )
<details>
<summary>{{ name }}</summary>
<hr>
<table>
<tr>
<th>Time</th>
<th>From</th>
<th class="absorbing-column">Message</th>
</tr>
# endmacro
# for row in rows:
# if loop.changed( row[ 0 ] )
# if not loop.first
</table>
</details>
# endif
{{ roomIntro( row[ 'roomTitle' ] ) }}
# endif
{{ renderRow( row[ 'personId' ] ) }}
<td class="activity-item-sender-meta meta-data-time">{{ renderShortDate( row[ 'created' ] ) }}</td>
<td class="activity-item-sender-meta meta-data-name">{{ renderName( row[ 'personId' ], row[ 'displayName' ]
) }}</td>
{{ renderText( row[ 'personId' ], row[ 'text' ], row[ 'html' ], row[ 'parentId' ] ) }}
</tr>
# if loop.last
</table>
</details>
# endif
# endfor
</div>
</body>
</html>