diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-11-14 16:53:33 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-11-14 16:53:33 +0000 |
commit | d69f2e3e9d8ac40aeb57b1a67905a675f7d190b7 (patch) | |
tree | e5d82783227783618a007dd39cfd353c33852a73 /interface/index.html | |
parent | 6501313df807446c3f053c5377e1a7d5ec188081 (diff) | |
download | rspamd-d69f2e3e9d8ac40aeb57b1a67905a675f7d190b7.tar.gz rspamd-d69f2e3e9d8ac40aeb57b1a67905a675f7d190b7.zip |
[WebUI] Add support for errors ring in WebUI
Diffstat (limited to 'interface/index.html')
-rw-r--r-- | interface/index.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/interface/index.html b/interface/index.html index 502e5791c..1db58c87c 100644 --- a/interface/index.html +++ b/interface/index.html @@ -270,6 +270,29 @@ </table> </div> </div> + <div class="widget-box"> + <div class="widget-title"> + <div class="buttons pull-right"> + <button class="btn btn-info btn-sm" id="updateErrors"> + <i class="glyphicon glyphicon-refresh"></i> Update + </button> + </div> + <span class="icon"><i class="glyphicon glyphicon-eye-open"></i></span> + <h5>Errors</h5> + </div> + <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> + </thead> + </table> + </div> + </div> </div> |