lucassus/mongo_browser

View on GitHub
public/ng/templates/collections/stats.html

Summary

Maintainability
Test Coverage
<header>
  <h2>{{dbName}} / {{collectionName}} stats</h2>
</header>

<table class="table table-striped table-hover">
  <thead>
  <tr>
    <th>Property</th>
    <th>Value</th>
  </tr>
  </thead>
  <tbody>
  <tr ng-repeat="(property, value) in stats">
    <td>{{property}}</td>
    <td>{{value}}</td>
  </tr>
  </tbody>
</table>