summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ogcp/static/js/ogcp.js10
-rw-r--r--ogcp/views.py1
2 files changed, 9 insertions, 2 deletions
diff --git a/ogcp/static/js/ogcp.js b/ogcp/static/js/ogcp.js
index ffddc58..9612370 100644
--- a/ogcp/static/js/ogcp.js
+++ b/ogcp/static/js/ogcp.js
@@ -141,7 +141,9 @@ function updateScopeState() {
}, Interval);
}
-function updatePillStatus(state, pill) {
+function updatePillStatus(scope, pill) {
+ const state = scope.state
+ const link = scope.link
const pillCls = ['badge-danger', 'badge-success', 'badge-warning',
'badge-wol', 'badge-light'];
pill.classList.remove(...pillCls);
@@ -156,6 +158,10 @@ function updatePillStatus(state, pill) {
} else {
pill.classList.add('badge-light');
}
+
+ $('[name="link"]', pill).remove()
+ if (link)
+ $(pill).append('<b name="link"><br>' + link + ' Mb/s'+ '</b>');
}
function updateScopes(scopes) {
@@ -183,7 +189,7 @@ function updateScopes(scopes) {
const pillScopeId = `pill-${scopeId}`;
const pillEl = document.querySelector(`#${pillScopeId}`);
if (pillEl)
- updatePillStatus(scope.state, pillEl);
+ updatePillStatus(scope, pillEl);
}
if (scope.scope) {
// This is a level so we should update all childs
diff --git a/ogcp/views.py b/ogcp/views.py
index aae889f..2d995fd 100644
--- a/ogcp/views.py
+++ b/ogcp/views.py
@@ -139,6 +139,7 @@ def add_state_and_ips(scope, clients, ips):
client = next(filtered_client, False)
if client:
scope['state'] = client['state']
+ scope['link'] = client.get('speed')
else:
scope['state'] = 'off'
scope['ip'] = [scope['ip']]