b3e806d131
This makes it more easy to 'at a glance' see what a system is up to. Its using the same counts of success, fail, and unknown as before but now using EZBC-js to display them as a vertical bar chart. In addition it shows how many results are 'missing', whether that be that the system missed the patcheset or just hasn't voted yet. Change-Id: Ia9d57a74754d64c9faf3826e78ddfb9db574deb7
25 lines
954 B
HTML
25 lines
954 B
HTML
<html>
|
|
<head>
|
|
<link rel='icon' type='image/png' href='/static/favicon.ico'>
|
|
<script type='text/javascript' src='/static/jquery-2.1.3.min.js'></script>
|
|
<script type='text/javascript' src='/static/scoreboard.js'></script>
|
|
<script type='text/javascript' src='http://fgnass.github.io/spin.js/spin.js'></script>
|
|
<script type='text/javascript' src='/static/ezbc.js'></script>
|
|
<link rel='stylesheet' type='text/css' href='/static/scoreboard.css'>
|
|
</head>
|
|
<body>
|
|
<div id="logo">
|
|
<img src="/static/open-stack-cloud-computing-logo-2.png" />
|
|
</div>
|
|
<div id='query-box'></div>
|
|
<div id='paginator'></div>
|
|
<div id='scoreboard'></div>
|
|
<script type='text/javascript'>
|
|
var HOST = '{{host}}';
|
|
|
|
Scoreboard.show_query_box(HOST, 'query-box');
|
|
Scoreboard.build(HOST, 'scoreboard');
|
|
</script>
|
|
</body>
|
|
</html>
|