ymanager/webapp/src/app/oncoming-vacation/oncoming-vacation.component.html @ a878ce1c
1 |
<div class="oncoming-days-off-container"> |
---|---|
2 |
|
3 |
<div class="component-header"> |
4 |
Mé nadcházející volno |
5 |
</div>
|
6 |
|
7 |
<table class="table text-center table-hover"> |
8 |
<thead class="thead-light"> |
9 |
<tr>
|
10 |
<th>Typ volna</th> |
11 |
<th>Datum</th> |
12 |
<th>Od</th> |
13 |
<th>Do</th> |
14 |
<th>Status</th> |
15 |
<th></th>
|
16 |
</tr>
|
17 |
</thead>
|
18 |
<tbody>
|
19 |
<tr *ngFor="let vac of oncomingVacation"> |
20 |
<td style="width:15%"> |
21 |
{{vac.type}} |
22 |
</td>
|
23 |
|
24 |
<td style="width:15%"> |
25 |
{{vac.date}} |
26 |
</td>
|
27 |
|
28 |
<td style="width:15%"> |
29 |
{{vac.from}} |
30 |
</td>
|
31 |
|
32 |
<td style="width:15%"> |
33 |
{{vac.to}} |
34 |
</td>
|
35 |
|
36 |
<td style="width:15%"> |
37 |
{{vac.status}} |
38 |
</td>
|
39 |
|
40 |
<td class="buttons"> |
41 |
<!-- <button mat-icon-button (click)="vacationEdit.emit(vac)">-->
|
42 |
<!-- <i class="material-icons edit-btn">edit</i>-->
|
43 |
<!-- </button>-->
|
44 |
<button mat-icon-button (click)="vacationRemove.emit(vac)"> |
45 |
<i class="material-icons remove-btn">delete</i> |
46 |
</button>
|
47 |
</td>
|
48 |
</tr>
|
49 |
</tbody>
|
50 |
</table>
|
51 |
|
52 |
</div>
|