hover_op_table.hbs 453 B

123456789101112131415161718192021
  1. <p>{{content.operationName}}</p>
  2. <table id="hover-op-table" class="table table-bordered">
  3. <thead>
  4. <tr>
  5. <th>{{t common.name}}</th>
  6. <th>{{t common.value}}</th>
  7. </tr>
  8. </thead>
  9. <tbody>
  10. {{#each keys in content.operatorPlanObj}}
  11. <tr>
  12. <td>
  13. {{keys.name}}
  14. </td>
  15. <td>
  16. {{keys.value}}
  17. </td>
  18. </tr>
  19. {{/each}}
  20. </tbody>
  21. </table>