You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
890 B
41 lines
890 B
8 years ago
|
<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>
|