step3.hbs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <!--
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. -->
  18. <h2>{{t installer.step3.header}}</h2>
  19. <p class="alert alert-info">{{t installer.step3.body}}</p>
  20. <div id="hosts" class="box">
  21. <div class="box-header">
  22. <div class="button-section">
  23. <a class="btn btn-primary decommission" href="#" {{action retry}}><i
  24. class="icon-repeat icon-white"></i>
  25. Retry
  26. </a>
  27. <a class="btn btn-primary" href="#" {{action remove}}><i
  28. class="icon-trash icon-white"></i>
  29. Remove
  30. </a>
  31. </div>
  32. </div>
  33. <table class="table table-bordered table-striped">
  34. <!--<colgroup>-->
  35. <!--<col class="span1">-->
  36. <!--<col class="span7">-->
  37. <!--</colgroup>-->
  38. <thead>
  39. <tr>
  40. <th>
  41. <label class="checkbox">
  42. <input type="checkbox">
  43. </label>
  44. </th>
  45. <th>Status</th>
  46. <!-- given by the parsing function that parses data from bootstrap call -->
  47. <th>Name</th>
  48. <!-- retrieved from local storage initially -->
  49. <th>Message</th>
  50. <!-- given by the parsing function that parses data from bootstrap call, dynamically assign the color -->
  51. <th>Delete</th>
  52. <!-- trash icon -->
  53. </tr>
  54. </thead>
  55. <tbody>
  56. <tr class="warning">
  57. <td>
  58. <label class="checkbox">
  59. <input type="checkbox">
  60. </label>
  61. </td>
  62. <td></td>
  63. <td>ip-12-12-12-1231.co2.ama.internal</td>
  64. <td>Verifying SSH connection</td>
  65. <td>
  66. <a href="javascript:void(null)" {{action remove}}><i class="icon-trash"></i></a>
  67. </td>
  68. </tr>
  69. <tr class="success">
  70. <td>
  71. <label class="checkbox">
  72. <input type="checkbox">
  73. </label>
  74. </td>
  75. <td></td>
  76. <td>ip-12-12-12-1232.co2.ama.internal</td>
  77. <td>Succeed</td>
  78. <td>
  79. <a href="javascript:void(null)" {{action remove}}><i class="icon-trash"></i></a>
  80. </td>
  81. </tr>
  82. <tr class="warning">
  83. <td>
  84. <label class="checkbox">
  85. <input type="checkbox">
  86. </label>
  87. </td>
  88. <td></td>
  89. <td>ip-12-12-12-1233.co2.ama.internal</td>
  90. <td>Verifying SSH connection</td>
  91. <td>
  92. <a href="javascript:void(null)" {{action remove}}><i class="icon-trash"></i></a>
  93. </td>
  94. </tr>
  95. <tr class="warning">
  96. <td>
  97. <label class="checkbox">
  98. <input type="checkbox">
  99. </label>
  100. </td>
  101. <td></td>
  102. <td>ip-12-12-12-1234.co2.ama.internal</td>
  103. <td>Verifying SSH connection</td>
  104. <td>
  105. <a href="javascript:void(null)" {{action remove}}><i class="icon-trash"></i></a>
  106. </td>
  107. </tr>
  108. <tr class="error">
  109. <td>
  110. <label class="checkbox">
  111. <input type="checkbox">
  112. </label>
  113. </td>
  114. <td></td>
  115. <td>ip-12-12-12-1235.co2.ama.internal</td>
  116. <td>ssh connection failed</td>
  117. <td>
  118. <a href="javascript:void(null)" {{action remove}}><i class="icon-trash"></i></a>
  119. </td>
  120. </tr>
  121. </tbody>
  122. </table>
  123. <div class="box-footer">
  124. <hr/>
  125. <div class="footer-pagination">
  126. </div>
  127. </div>
  128. </div>
  129. <div class="btn-area">
  130. <a class="btn" {{action back}}>Previous</a>
  131. <a class="btn btn-success" style="float:right" {{action next}}>Next</a>
  132. </div>