123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <!--
- * 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.
- -->
- <h2>{{t installer.step3.header}}</h2>
- <p class="alert alert-info">{{t installer.step3.body}}</p>
- <div id="hosts" class="box">
- <div class="box-header">
- <div class="button-section">
- <a class="btn btn-primary decommission" href="#" {{action retry}}><i
- class="icon-repeat icon-white"></i>
- Retry
- </a>
- <a class="btn btn-primary" href="#" {{action remove}}><i
- class="icon-trash icon-white"></i>
- Remove
- </a>
- </div>
- </div>
- <table class="table table-bordered table-striped">
- <!--<colgroup>-->
- <!--<col class="span1">-->
- <!--<col class="span7">-->
- <!--</colgroup>-->
- <thead>
- <tr>
- <th>
- <label class="checkbox">
- <input type="checkbox">
- </label>
- </th>
- <th>Status</th>
- <!-- given by the parsing function that parses data from bootstrap call -->
- <th>Name</th>
- <!-- retrieved from local storage initially -->
- <th>Message</th>
- <!-- given by the parsing function that parses data from bootstrap call, dynamically assign the color -->
- <th>Delete</th>
- <!-- trash icon -->
- </tr>
- </thead>
- <tbody>
- <tr class="warning">
- <td>
- <label class="checkbox">
- <input type="checkbox">
- </label>
- </td>
- <td></td>
- <td>ip-12-12-12-1231.co2.ama.internal</td>
- <td>Verifying SSH connection</td>
- <td>
- <a href="javascript:void(null)" {{action remove}}><i class="icon-trash"></i></a>
- </td>
- </tr>
- <tr class="success">
- <td>
- <label class="checkbox">
- <input type="checkbox">
- </label>
- </td>
- <td></td>
- <td>ip-12-12-12-1232.co2.ama.internal</td>
- <td>Succeed</td>
- <td>
- <a href="javascript:void(null)" {{action remove}}><i class="icon-trash"></i></a>
- </td>
- </tr>
- <tr class="warning">
- <td>
- <label class="checkbox">
- <input type="checkbox">
- </label>
- </td>
- <td></td>
- <td>ip-12-12-12-1233.co2.ama.internal</td>
- <td>Verifying SSH connection</td>
- <td>
- <a href="javascript:void(null)" {{action remove}}><i class="icon-trash"></i></a>
- </td>
- </tr>
- <tr class="warning">
- <td>
- <label class="checkbox">
- <input type="checkbox">
- </label>
- </td>
- <td></td>
- <td>ip-12-12-12-1234.co2.ama.internal</td>
- <td>Verifying SSH connection</td>
- <td>
- <a href="javascript:void(null)" {{action remove}}><i class="icon-trash"></i></a>
- </td>
- </tr>
- <tr class="error">
- <td>
- <label class="checkbox">
- <input type="checkbox">
- </label>
- </td>
- <td></td>
- <td>ip-12-12-12-1235.co2.ama.internal</td>
- <td>ssh connection failed</td>
- <td>
- <a href="javascript:void(null)" {{action remove}}><i class="icon-trash"></i></a>
- </td>
- </tr>
- </tbody>
- </table>
- <div class="box-footer">
- <hr/>
- <div class="footer-pagination">
- </div>
- </div>
- </div>
- <div class="btn-area">
- <a class="btn" {{action back}}>Previous</a>
- <a class="btn btn-success" style="float:right" {{action next}}>Next</a>
- </div>
|