diff options
author | Anna Stakhova <anna@rspamd.com> | 2017-01-07 23:57:08 +0000 |
---|---|---|
committer | Anna Stakhova <anna@rspamd.com> | 2017-01-07 23:57:08 +0000 |
commit | 82342ac14e883a2e39f53dc772cf19d745f063f5 (patch) | |
tree | 7d153cedb8cc9a02b1e4f312c52535f83769c008 /interface/index.html | |
parent | 348e129aac10e5668aa16d19bffdb95473d52883 (diff) | |
download | rspamd-82342ac14e883a2e39f53dc772cf19d745f063f5.tar.gz rspamd-82342ac14e883a2e39f53dc772cf19d745f063f5.zip |
[WebUI] Initial clusters support
Diffstat (limited to 'interface/index.html')
-rw-r--r-- | interface/index.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/interface/index.html b/interface/index.html index 5b0dda706..c303286ee 100644 --- a/interface/index.html +++ b/interface/index.html @@ -66,6 +66,46 @@ </div> </div> </div> + <div class="widget-box"> + <!--iv class="widget-title"> + <span class="icon"><i class="glyphicon glyphicon-tasks"></i></span> + <h5>Servers</h5> + </div--> + <div class="widget-content nopadding"> + <table class="table table-log table-hover" id="clusterTable"> + <thead> + <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> + </thead> + <tbody> + <tr> + <td class="col1" title="Radio"><input type="radio" id ="bu" class="form-control radio" name="clusterName" value="" checked></td> + <td class="col2" title="SName">ALL SERVERS</td> + <td class="col3" title="SHost"></td> + <td class="col4" title="SStatus"></td> + <td class="col5" title="SId">?????????????</td> + </tr> + <tr> + <td class="col1" title="Radio"><input type="radio" class="form-control radio" name="clusterName" value=""></td> + <td class="col2" title="SName">Server1</td> + <td class="col3" title="SHost">localhost:8080</td> + <td class="col4" title="SStatus"><span class="icon"><i class="glyphicon glyphicon-remove-circle"></i></span></td> + <td class="col5" title="SId">?????????????</td> + </tr> + <tr> + <td class="col1" title="Radio"><input type="radio" class="form-control radio" name="clusterName" value=""></td> + <td class="col2" title="SName">Server2</td> + <td class="col3" title="SHost">localhost:8080</td> + <td class="col4" title="SStatus"><span class="icon"><i class="glyphicon glyphicon-ok-circle"></i></span></td> + <td class="col5" title="SId">?????????????</td> + </tr> + </tbody> + </table> + </div> + </div> </div> <div class="tab-pane" id="throughput"> |