-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.html
37 lines (36 loc) · 1.31 KB
/
table.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<table class="table table-striped">
<thead>
<tr>
<th>Description</th>
<th>Checkbox</th>
<th>Done</th>
<th>Deadline</th>
<th>Responsible</th>
<th>Est.hours</th>
<th>Other field</th>
<th class="text-right">Commands</th>
</tr>
</thead>
<tbody>
<!-- <tr ng-repeat="item in $ctrl.todo.items | filter: {done: false} | orderBy: 'action'"> -->
<tr ng-repeat="item in $ctrl.todo.items | checkedItems: $ctrl.showComplete | orderBy: 'action'">
<td>{{item.action}}</td>
<td><input type="checkbox" ng-model="item.done"></td>
<td>{{item.done ? 'Yes' : 'No'}}</td>
<td><input type="date"></td>
<td><input type="text"></td>
<td><input type="number" maxlength="3" size="3"></td>
<td><input type="text"></td>
<td class="text-right">
<button type="button" class="btn btn-primary">
<span class="glyphicon glyphicon-edit" aria-hidden="true"
title="Edit"></span>
</button>
<button type="button" class="btn btn-danger">
<span class="glyphicon glyphicon-trash" aria-hidden="true"
title="Delete"></span>
</button>
</td>
</tr>
</tbody>
</table>