micropanel.html 400 B

12345678910111213
  1. <a class="close" ng-click="dismiss()" href="">×</a>
  2. <h4>Micro Analysis of {{micropanel.field}}</h4>
  3. <table style="width:500px" class='table table-bordered table-striped table-condensed'>
  4. <thead>
  5. <th>{{micropanel.field}}</th>
  6. <th>On Page</th>
  7. </thead>
  8. <tbody>
  9. <tr ng-repeat='field in micropanel.values'>
  10. <td>{{field[0]}}</td><td>{{field[1]}}</td>
  11. </tr>
  12. </tbody>
  13. </table>