hosts.hbs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. <div id="hosts" class="box">
  19. <div class="box-header">
  20. <div class="button-section">
  21. <div class="btn-group">
  22. <button class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
  23. Rack
  24. <span class="caret"></span>
  25. </button>
  26. <ul class="dropdown-menu">
  27. <li><a href="#">Rack1</a></li>
  28. <li><a href="#">Rack2</a></li>
  29. <li><a href="#">Rack3</a></li>
  30. </ul>
  31. </div>
  32. <div class="btn-group">
  33. <button class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
  34. Stop
  35. <span class="caret"></span>
  36. </button>
  37. <ul class="dropdown-menu">
  38. <li><a href="#">1</a></li>
  39. <li><a href="#">2</a></li>
  40. </ul>
  41. </div>
  42. <a class="btn btn-primary decommission" href="#">
  43. Decommission
  44. </a>
  45. <a class="btn btn-primary" href="#">
  46. Delete
  47. </a>
  48. <a class="btn btn-inverse add-host-button" href="#">
  49. <i class="icon-plus icon-white"></i>
  50. Add New Host
  51. </a>
  52. </div>
  53. </div>
  54. <table class="table table-bordered table-striped">
  55. <!--<colgroup>-->
  56. <!--<col class="span1">-->
  57. <!--<col class="span7">-->
  58. <!--</colgroup>-->
  59. <thead>
  60. <tr>
  61. <th>
  62. <label class="checkbox">
  63. <input type="checkbox">
  64. </label>
  65. </th>
  66. <th>Name</th>
  67. <th>Rack</th>
  68. <th>Services</th>
  69. <th>Components</th>
  70. </tr>
  71. </thead>
  72. <tbody>
  73. <tr>
  74. <td>
  75. <label class="checkbox">
  76. <input type="checkbox">
  77. </label>
  78. </td>
  79. <td>ip-12-12-12-1232.co2.ama.internal</td>
  80. <td>Rack1</td>
  81. <td>HDFS MapReduce</td>
  82. <td>NameNode</td>
  83. </tr>
  84. <tr>
  85. <td>
  86. <label class="checkbox">
  87. <input type="checkbox">
  88. </label>
  89. </td>
  90. <td>ip-12-12-12-1232.co2.ama.internal</td>
  91. <td>Rack1</td>
  92. <td>HDFS MapReduce</td>
  93. <td>NameNode</td>
  94. </tr>
  95. <tr>
  96. <td>
  97. <label class="checkbox">
  98. <input type="checkbox">
  99. </label>
  100. </td>
  101. <td>ip-12-12-12-1232.co2.ama.internal</td>
  102. <td>Rack1</td>
  103. <td>HDFS MapReduce</td>
  104. <td>NameNode</td>
  105. </tr>
  106. <tr>
  107. <td>
  108. <label class="checkbox">
  109. <input type="checkbox">
  110. </label>
  111. </td>
  112. <td>ip-12-12-12-1232.co2.ama.internal</td>
  113. <td>Rack1</td>
  114. <td>HDFS MapReduce</td>
  115. <td>NameNode</td>
  116. </tr>
  117. <tr>
  118. <td>
  119. <label class="checkbox">
  120. <input type="checkbox">
  121. </label>
  122. </td>
  123. <td>ip-12-12-12-1232.co2.ama.internal</td>
  124. <td>Rack1</td>
  125. <td>HDFS MapReduce</td>
  126. <td>NameNode</td>
  127. </tr>
  128. </tbody>
  129. </table>
  130. <div class="box-footer">
  131. <hr />
  132. <div class="footer-pagination">
  133. <ul class="nav nav-pills">
  134. <li class="disabled">Show Hosts</li>
  135. <li class="dropdown">
  136. <a class="dropdown-toggle" data-toggle="dropdown" href="#">25<b class="caret"></b></a>
  137. <ul class="dropdown-menu">
  138. <li><a href="#">50</a></li>
  139. <li><a href="#">100</a></li>
  140. <li><a href="#">All</a></li>
  141. </ul>
  142. </li>
  143. <li class="disabled">1-25 of 400</li>
  144. </ul>
  145. </div>
  146. </div>
  147. </div>