20 lines
539 B
HTML
20 lines
539 B
HTML
<table class="data-table" ng-controller="TableCtrl" id="table">
|
|
<thead>
|
|
<tr>
|
|
<th class="data-table__checkbox"><input type="checkbox"></th>
|
|
<th ng-repeat="i in cellIndexes" class="data-table__{{cellsName[i]}}">
|
|
{{cellsText[i]}}
|
|
<i class="ico-up-dir"></i>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody class="" ng-repeat="entry in entries">
|
|
<tr>
|
|
<td><input type="checkbox"></td>
|
|
<td adg-cell cell-name="{{cell}}" ng-repeat="cell in cellsName"></td>
|
|
</tr>
|
|
</tbody>
|
|
|
|
</table>
|