diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2023-04-01 09:14:28 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2023-04-03 08:59:25 +0200 |
| commit | dba2ffb9e2893764c52cc440f6566cd212a585c7 (patch) | |
| tree | a55bd37c872130f4f42690c5342ab273766694c3 /dashboard/app/subsystems.html | |
| parent | 41147e3e361ee2d3b0109b5ab618354e96aa2ba5 (diff) | |
dashboard/app: remove repetition on subsystems page
Currently it repeats that this is a list of subsystems 3 times:
1. "Subsystems" tab
2. "The list of subsystems" caption
3. "Subsystems list" table caption
Leave only one of them.
Diffstat (limited to 'dashboard/app/subsystems.html')
| -rw-r--r-- | dashboard/app/subsystems.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/dashboard/app/subsystems.html b/dashboard/app/subsystems.html index 208c4f243..639fc1c82 100644 --- a/dashboard/app/subsystems.html +++ b/dashboard/app/subsystems.html @@ -14,12 +14,7 @@ The list of polled trees. <body> {{template "header" .Header}} <h2>The list of subsystems</h2><br> - <i>(*) Note that the numbers below do not represent the latest data. They are updated once an hour.</i><br><br> - {{if .SomeHidden}} - Empty subsystems have been hidden from the list. {{link .ShowAllURL "Show all"}}. <br> - {{end}} <table class="list_table"> - <caption>Subsystems list</caption> <thead> <tr> <th><a onclick="return sortTable(this, 'Name', textSort)" href="#">Name</a></th> @@ -47,5 +42,9 @@ The list of polled trees. </tr> </tfoot> </table> + <i>(*) Note that the numbers below do not represent the latest data. They are updated once an hour.</i><br><br> + {{if .SomeHidden}} + Empty subsystems have been hidden from the list. {{link .ShowAllURL "Show all"}}. <br> + {{end}} </body> </html> |
