diff options
author | moisseev <moiseev@mezonplus.ru> | 2020-08-08 20:59:27 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2020-08-08 20:59:27 +0300 |
commit | 1b34085ec52494c59b203908a4976d05aaa0f28f (patch) | |
tree | d968edb1a28c53c827b8a19a4a3024848f20ea2f /interface/index.html | |
parent | cb776ef73e9043843480db683392cba4636feb51 (diff) | |
download | rspamd-1b34085ec52494c59b203908a4976d05aaa0f28f.tar.gz rspamd-1b34085ec52494c59b203908a4976d05aaa0f28f.zip |
[WebUI] Add Bayesian statistics info
Diffstat (limited to 'interface/index.html')
-rw-r--r-- | interface/index.html | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/interface/index.html b/interface/index.html index 480fa79ad..71314e282 100644 --- a/interface/index.html +++ b/interface/index.html @@ -107,7 +107,7 @@ <span class="h6 font-weight-bolder my-2">Servers</span> </div> <div class="card-body p-0 table-responsive"> - <table class="table table-sm table-hover table-bordered text-nowrap mb-0" id="clusterTable"> + <table class="table status-table table-sm table-hover table-bordered text-nowrap mb-0" id="clusterTable"> <thead class="text-secondary"> <tr> <th></th> @@ -124,6 +124,27 @@ </table> </div> </div> + <div class="card bg-light shadow my-3"> + <div class="card-header text-secondary py-2"> + <span class="icon mr-3"><i class="fas fa-dice"></i></span> + <span class="h6 font-weight-bolder my-2">Bayesian statistics</span> + </div> + <div class="card-body p-0 table-responsive"> + <table class="table status-table table-sm table-bordered text-nowrap mb-0" id="bayesTable"> + <thead class="text-secondary"> + <tr> + <th>Server name</th> + <th>Symbol</th> + <th>Type</th> + <th>Learns</th> + <th>Users</th> + </tr> + </thead> + <tbody> + </tbody> + </table> + </div> + </div> </div> <div class="col-lg-6"> <div class="card bg-light shadow my-3"> |