diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2017-01-21 18:35:12 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2017-01-21 18:35:12 +0300 |
commit | 7b792b14b1353616253573a788576e8025c15d53 (patch) | |
tree | a52c286e25b0afc6a20dba15e7a9f9e4dfecea85 /interface/index.html | |
parent | 4a5122361e2a92ccaf06a1b391e5980424fc7b57 (diff) | |
download | rspamd-7b792b14b1353616253573a788576e8025c15d53.tar.gz rspamd-7b792b14b1353616253573a788576e8025c15d53.zip |
[WebUI] Enclose table header cells with `tr`s
Diffstat (limited to 'interface/index.html')
-rw-r--r-- | interface/index.html | 60 |
1 files changed, 35 insertions, 25 deletions
diff --git a/interface/index.html b/interface/index.html index 78311a4c2..ae413985d 100644 --- a/interface/index.html +++ b/interface/index.html @@ -74,11 +74,13 @@ <div class="widget-content nopadding"> <table class="table table-log table-hover" id="clusterTable"> <thead> + <tr> <th class="col1" title="Radio"></th> <th class="col2" title="SName">Server name</th> <th class="col3" title="SHost">Host</th> <th class="col4" title="SStatus">Status</th> <th class="col5" title="SId">Configuration ID</th> + </tr> </thead> <tbody> </tbody> @@ -182,13 +184,15 @@ <div class="widget-content nopadding"> <table class="table table-log table-hover" id="symbolsTable"> <thead> - <th title="Group">Group</th> - <th title="Symbol">Symbol</th> - <th title="Description">Description</th> - <th title="Score">Score</th> - <th title="Hits">Hits</th> - <th title="Avg.time">Avg.time</th> - <th title="Save data">Save data</th> + <tr> + <th title="Group">Group</th> + <th title="Symbol">Symbol</th> + <th title="Description">Description</th> + <th title="Score">Score</th> + <th title="Hits">Hits</th> + <th title="Avg.time">Avg.time</th> + <th title="Save data">Save data</th> + </tr> </thead> </table> </div> @@ -264,9 +268,11 @@ <div class="well nomargin nopadding"> <table class="table table-log table-hover" id="scanOutput"> <thead> - <th class="col4" title="Action">Action</th> - <th class="col5" title="Score / Req. score">Score / Req. score</th> - <th class="col6" title="Symbols">Symbols</th> + <tr> + <th class="col4" title="Action">Action</th> + <th class="col5" title="Score / Req. score">Score / Req. score</th> + <th class="col6" title="Symbols">Symbols</th> + </tr> </thead> </table> </div> @@ -293,15 +299,17 @@ <div class="widget-content nopadding"> <table class="table table-log table-hover" id="historyLog"> <thead> - <th class="col1" title="Time">Time</th> - <th class="col2" title="ID">ID</th> - <th class="col3" title="IP">IP</th> - <th class="col4" title="Action">Action</th> - <th class="col5" title="Score / Req. score">Score / Req. score</th> - <th class="col6" title="Symbols">Symbols</th> - <th class="col7" title="Size">Size</th> - <th class="col8" title="Scan Time (s)"><div class="cell-overflow">Scan Time (s)</div></th> - <th class="col9" title="User">User</th> + <tr> + <th class="col1" title="Time">Time</th> + <th class="col2" title="ID">ID</th> + <th class="col3" title="IP">IP</th> + <th class="col4" title="Action">Action</th> + <th class="col5" title="Score / Req. score">Score / Req. score</th> + <th class="col6" title="Symbols">Symbols</th> + <th class="col7" title="Size">Size</th> + <th class="col8" title="Scan Time (s)"><div class="cell-overflow">Scan Time (s)</div></th> + <th class="col9" title="User">User</th> + </tr> </thead> </table> </div> @@ -319,12 +327,14 @@ <div class="widget-content nopadding"> <table class="table table-log table-hover" id="errorsLog"> <thead> - <th title="Time">Time</th> - <th title="Worker">Worker</th> - <th title="PID">PID</th> - <th title="Module">Module</th> - <th title="ID">ID</th> - <th title="Message">Message</th> + <tr> + <th title="Time">Time</th> + <th title="Worker">Worker</th> + <th title="PID">PID</th> + <th title="Module">Module</th> + <th title="ID">ID</th> + <th title="Message">Message</th> + </tr> </thead> </table> </div> |