summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics/templates/hints-nic-speed.html
diff options
context:
space:
mode:
authorSimon Rettberg2022-06-15 13:45:58 +0200
committerSimon Rettberg2022-06-15 13:45:58 +0200
commit496ac9b9680acae777dbd207858c874a7fcec252 (patch)
treeb766cd236318cf3355e581aa4b0def3c753e88de /modules-available/statistics/templates/hints-nic-speed.html
parent[statistics] Make CPU and system model clickable in machine details (diff)
downloadslx-admin-496ac9b9680acae777dbd207858c874a7fcec252.tar.gz
slx-admin-496ac9b9680acae777dbd207858c874a7fcec252.tar.xz
slx-admin-496ac9b9680acae777dbd207858c874a7fcec252.zip
[statistics] Show clients with < gigabit ethernet in hints
Diffstat (limited to 'modules-available/statistics/templates/hints-nic-speed.html')
-rw-r--r--modules-available/statistics/templates/hints-nic-speed.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/modules-available/statistics/templates/hints-nic-speed.html b/modules-available/statistics/templates/hints-nic-speed.html
new file mode 100644
index 00000000..c26364e6
--- /dev/null
+++ b/modules-available/statistics/templates/hints-nic-speed.html
@@ -0,0 +1,31 @@
+<h2>{{lang_nicSlowSpeed}}</h2>
+
+<p>{{lang_nicSlowSpeedText}}</p>
+
+<table class="table">
+ <thead>
+ <tr>
+ <th>{{lang_machine}}</th>
+ <th>{{lang_nicSpeed}}</th>
+ <th>{{lang_nicDuplex}}</th>
+ </tr>
+ </thead>
+ <tbody>
+ {{#list}}
+ <tr>
+ <td>
+ <a class="slx-bold" href="?do=statistics&amp;uuid={{machineuuid}}">
+ {{hostname}}{{^hostname}}{{clientip}}{{/hostname}}
+ </a>
+ <div class="small">{{machineuuid}}</div>
+ </td>
+ <td class="text-nowrap">
+ {{nic-speed}}&thinsp;{{lang_MbitPerSecond}}
+ </td>
+ <td>
+ {{nic-duplex}}
+ </td>
+ </tr>
+ {{/list}}
+ </tbody>
+</table> \ No newline at end of file