diff options
Diffstat (limited to 'solr-8.1.1/server/solr-webapp/webapp/partials/cluster_suggestions.html')
| -rw-r--r-- | solr-8.1.1/server/solr-webapp/webapp/partials/cluster_suggestions.html | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/solr-8.1.1/server/solr-webapp/webapp/partials/cluster_suggestions.html b/solr-8.1.1/server/solr-webapp/webapp/partials/cluster_suggestions.html new file mode 100644 index 000000000..892b0bbc9 --- /dev/null +++ b/solr-8.1.1/server/solr-webapp/webapp/partials/cluster_suggestions.html @@ -0,0 +1,49 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<div id="cluster-suggestions"> + <h1>Cluster Suggestions</h1> + <br/> + <table id="s-table"> + <tr> + <td>Type</td> + <td>Reason</td> + <td>Details</td> + <td>Action</td> + </tr> + <tr ng-if="parsedData.length==0"> + <td align="center" colspan="4">NA</td> + </tr> + <tr ng-repeat="x in parsedData"> + <td>{{ x.type }}</td> + <td>{{ x.violation.clause }}</td> + <td>node: {{ x.violation.node }}, collection : {{ x.violation.collection }}, shard : {{ x.violation.shard }} </td> + <td> + <div class="s-container"> + <input class="s-box1" ng-hide="x.run || x.type =='unresolved-violation'" type="button" + title="{{ x.operation }}" ng-click="postdata(x)" ng-mouseover="showPopover()" + ng-mouseleave="hidePopover()"/> + <div class="s-box2" ng-show="x.loading"><img src="img/loader.gif"></div> + <div class="s-box3" ng-show="x.done"><img src="img/ico/tick.png"></div> + <div class="s-box4" ng-show="x.failed || x.type == 'unresolved-violation'"><img src="img/ico/cross.png"></div> + </div> + </td> + </tr> + </table> + +</div> + |
