2019-04-30 19:49:22 -07:00
|
|
|
|
|
|
|
<!DOCTYPE html>
|
2019-04-30 21:53:14 -07:00
|
|
|
<html lang="en">
|
2019-04-30 19:49:22 -07:00
|
|
|
<head>
|
2019-04-30 21:53:14 -07:00
|
|
|
<meta charset="utf-8"/>
|
|
|
|
<title>Endstat</title>
|
2019-05-01 13:15:18 -07:00
|
|
|
<link href="https://fonts.googleapis.com/css?family=Montserrat:200|Source+Code+Pro:400" rel="stylesheet">
|
2019-04-30 21:53:14 -07:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background-color: #212121;
|
|
|
|
color: #fff;
|
2019-05-01 13:15:18 -07:00
|
|
|
font-family: 'Montserrat', sans-serif;
|
2019-04-30 21:53:14 -07:00
|
|
|
width: 700px;
|
|
|
|
margin: 0 auto;
|
2019-05-01 13:15:18 -07:00
|
|
|
margin-top: 5rem;
|
|
|
|
}
|
|
|
|
|
2019-05-01 13:59:55 -07:00
|
|
|
main {
|
|
|
|
padding: 1rem 0;
|
|
|
|
}
|
|
|
|
|
2019-05-01 13:15:18 -07:00
|
|
|
header {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
|
|
|
justify-content: space-between;
|
2019-04-30 21:53:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
section {
|
|
|
|
display: flex;
|
2019-05-01 13:15:18 -07:00
|
|
|
align-items: stretch;
|
2019-04-30 21:53:14 -07:00
|
|
|
background-color: #424242;
|
2019-04-30 22:28:57 -07:00
|
|
|
margin: 1rem 0;
|
2019-04-30 21:53:14 -07:00
|
|
|
border-radius: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
p { margin: 0; }
|
2019-05-01 13:59:55 -07:00
|
|
|
a {
|
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2019-05-01 13:15:18 -07:00
|
|
|
h1 { display: block; margin: 0; }
|
|
|
|
h3 { margin-top: 0; }
|
2019-04-30 21:53:14 -07:00
|
|
|
|
|
|
|
.indicator {
|
|
|
|
width: 1rem;
|
2019-05-01 13:59:55 -07:00
|
|
|
min-height: 100%;
|
|
|
|
border-radius: 1rem 0 0 1rem;
|
|
|
|
margin-right: 1rem;
|
2019-04-30 21:53:14 -07:00
|
|
|
}
|
2019-05-01 13:59:55 -07:00
|
|
|
|
|
|
|
.ok { background-color: #4ed34e; }
|
|
|
|
.warn { background-color: #fcfc64; }
|
|
|
|
.error { background-color: #ff392e; }
|
2019-05-01 13:15:18 -07:00
|
|
|
.error-msg { font-family: 'Source Code Pro', monospace;}
|
2019-04-30 21:53:14 -07:00
|
|
|
</style>
|
2019-04-30 19:49:22 -07:00
|
|
|
</head>
|
|
|
|
<body>
|
2019-05-01 13:15:18 -07:00
|
|
|
<header>
|
2019-05-01 13:59:55 -07:00
|
|
|
<h1>Status Overview</h1>
|
2019-05-01 13:15:18 -07:00
|
|
|
<p>{{ results.timestamp_str }}</p>
|
|
|
|
</header>
|
2019-05-01 13:59:55 -07:00
|
|
|
{% for group in results.groups -%}
|
|
|
|
<h2>{{ group.label }}</h2>
|
|
|
|
{% for status in group.endpoints -%}
|
2019-04-30 21:53:14 -07:00
|
|
|
<section>
|
2019-05-01 13:59:55 -07:00
|
|
|
<aside class="indicator {% if status.status == 0 %}ok{% elif status.status == 1 %}warn{% else %}error{% endif %}"></aside>
|
|
|
|
<main>
|
2019-05-01 13:15:18 -07:00
|
|
|
<h3>{{ status.endpoint }}</h3>
|
2019-05-01 13:59:55 -07:00
|
|
|
<a href="{{ status.location }}">{{ status.location }}</a>
|
2019-05-01 13:15:18 -07:00
|
|
|
{% if status.error %}<p class="error-msg">{{ status.error }}</p>{% endif %}
|
2019-05-01 13:59:55 -07:00
|
|
|
</main>
|
2019-04-30 21:53:14 -07:00
|
|
|
</section>
|
|
|
|
{% endfor -%}
|
2019-05-01 13:59:55 -07:00
|
|
|
{% endfor -%}
|
2019-04-30 19:49:22 -07:00
|
|
|
</body>
|
|
|
|
</html>
|