aboutsummaryrefslogtreecommitdiff
path: root/test/functional/combined_log_template.html
blob: c0b854b0805603e4c7dbd51c77195f953d99e8e7 (plain)
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
<html lang="en">
<head>
    <title> {{ title }} </title>
    <style>
        ul {
            list-style-type: none;
            font-family: monospace;
        }
        li {
            border: 1px solid slategray;
            margin-bottom: 1px;
        }
        li:hover {
            filter: brightness(85%);
        }
        li.log-test {
            background-color: cyan;
        }
        li.log-node0 {
            background-color: lightblue;
        }
        li.log-node1 {
            background-color: lightgreen;
        }
        li.log-node2 {
            background-color: lightsalmon;
        }
        li.log-node3 {
            background-color: lightyellow;
        }
    </style>
</head>
<body>
<ul>
{% for event in log_events %}
<li class="log-{{ event.source }}"> {{ event.source }} {{ event.timestamp }} {{event.event}}</li>
{% endfor %}
</ul>
</body>
</html>