diff --git a/puppetboard/static/coffeescript/tables.coffee b/puppetboard/static/coffeescript/tables.coffee
index 9b47f45..1155182 100644
--- a/puppetboard/static/coffeescript/tables.coffee
+++ b/puppetboard/static/coffeescript/tables.coffee
@@ -13,7 +13,7 @@ $('.facts').tablesorter(
$('.dashboard').tablesorter(
headers:
- 2:
+ 3:
sorter: false
sortList: [[0, 1]]
)
diff --git a/puppetboard/static/css/puppetboard.css b/puppetboard/static/css/puppetboard.css
index c8eeb7a..0e2444b 100644
--- a/puppetboard/static/css/puppetboard.css
+++ b/puppetboard/static/css/puppetboard.css
@@ -31,12 +31,13 @@ th.tablesorter-headerDesc::after {
}
.status {
- width: 47%;
+ width: 47.5%;
text-align: center;
display: block;
}
+
.count {
- width: 21%;
+ width: 14%;
text-align: center;
display: block;
}
diff --git a/puppetboard/static/js/tables.js b/puppetboard/static/js/tables.js
index ccac257..df7673b 100644
--- a/puppetboard/static/js/tables.js
+++ b/puppetboard/static/js/tables.js
@@ -21,7 +21,9 @@
$('.dashboard').tablesorter({
headers: {
- 2: { sorter: false }
+ 3: {
+ sorter: false
+ }
},
sortList: [[0, 1]]
});
diff --git a/puppetboard/templates/index.html b/puppetboard/templates/index.html
index a7dec4e..dc76ea8 100644
--- a/puppetboard/templates/index.html
+++ b/puppetboard/templates/index.html
@@ -65,7 +65,8 @@
@@ -88,19 +89,27 @@
{{node.status}}
{% if node.status=='unreported'%}
- {{ node.unreported_time }}
+ {{ node.unreported_time }}
{% else %}
{% if node.events['failures'] %}{{node.events['failures']}}{% else %}0{% endif%}
{% if node.events['successes'] %}{{node.events['successes']}}{% else %}0{% endif%}
+ {% if node.events['skips'] %}{{node.events['skips']}}{% else %}0{% endif%}
{% endif %}
Status
- Hostname
+ Hostname
+ Report