19 lines
413 B
HTML
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>
|