19 lines
682 B
HTML
19 lines
682 B
HTML
<table class="data-table" ng-controller="TableCtrl">
|
|
<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="{{entry.child_class}}" ng-repeat="entry in entries | actionbarSelectFilter:actionbarFilters.activeFilter | filter:actionbarFilters.searchFilter | noRepeat:this | wrappableStyle:this">
|
|
<tr>
|
|
<td><input type="checkbox"></td>
|
|
<td bansho-cell cell-name="{{cell}}" ng-repeat="cell in cellsName"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|