Projekt

Obecné

Profil

Stáhnout (1.35 KB) Statistiky
| Větev: | Tag: | Revize:
1
<div class="oncoming-days-off-container">
2

    
3
  <div class="component-header">
4
    {{'oncomingVacation.headline' | translate}}
5
  </div>
6

    
7
  <table class="table text-center table-hover">
8
    <thead class="thead-light">
9
      <tr>
10
        <th>{{'basic.vacationType' | translate}}</th>
11
        <th>{{'basic.date' | translate}}</th>
12
        <th>{{'basic.from' | translate}}</th>
13
        <th>{{'basic.to' | translate}}</th>
14
        <th>{{'oncomingVacation.status' | translate}}</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 | translate}}
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%" class="status {{vac.status}}">
37
          {{vac.status | translate}}
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>
(1-1/4)