From c5a8c82b35704d2c7f1bb567095708d2c88169a1 Mon Sep 17 00:00:00 2001 From: Alejandro Sirgo Rica Date: Tue, 23 Jul 2024 11:57:49 +0200 Subject: js: add red highlight to slow client link speed in client pills Add a red inner pill to the link speed value when the speed is lower than 1Gb/s. --- ogcp/static/js/ogcp.js | 4 +++- ogcp/templates/base.html | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ogcp/static/js/ogcp.js b/ogcp/static/js/ogcp.js index 0dccd57..548122b 100644 --- a/ogcp/static/js/ogcp.js +++ b/ogcp/static/js/ogcp.js @@ -258,11 +258,13 @@ function updatePillStatus(scope, pill) { $('[name="link"]', pill).remove() if (link) { + let linkClasses = 'class="badge-danger badge-pill"'; if (link >= 1000) { link = link / 1000 units = 'Gb/s' + linkClasses = ''; } - $(pill).append('
' + link + ' ' + units + '
'); + $(pill).append('
' + link + ' ' + units + '
'); } } diff --git a/ogcp/templates/base.html b/ogcp/templates/base.html index ead7642..fad931a 100644 --- a/ogcp/templates/base.html +++ b/ogcp/templates/base.html @@ -108,7 +108,7 @@ - +