Files
bansho/app/components/table/table.html
2015-02-03 13:51:33 -05:00

19 lines
413 B
HTML

<div ng-app="adagios.table" ng-controller="TableCtrl" id="table">
<table class="table table-bordered">
<thead>
<tr>
<th></th>
<th ng-repeat="thead in cells">
{{thead}}
</th>
</tr>
</thead>
<tr ng-repeat="entry in entries">
<td><input type="checkbox"></td>
<td ng-repeat="cell in cells">
<adg-cell type="{{cell}}"></adg-cell>
</td>
</tr>
</table>
</div>