bansho/app/table/table.html
2015-01-20 14:29:10 -05:00

17 lines
335 B
HTML

<div ng-app="adagios.table" ng-controller="TableCtrl" id="table">
<table class="table">
<thead>
<tr>
<th ng-repeat="(key, value) in entries[0]">
{{key}}
</th>
</tr>
</thead>
<tr ng-repeat="entry in entries">
<td ng-repeat="(key, value) in entry">
{{value}}
</td>
</tr>
</table>
</div>