1 |
89c98d12
|
Václav Jirák
|
<h1 mat-dialog-title>Výchozí nastavení</h1>
|
2 |
|
|
|
3 |
|
|
<div mat-dialog-content>
|
4 |
|
|
<span class="dialog-label">Notifikace o vypršení dovolené: </span>
|
5 |
|
|
<app-datetime [(date)]="data.notificationDate" [(time)]="data.notificationTime" [minuteStep]="MINUTE_STEP"></app-datetime>
|
6 |
|
|
|
7 |
|
|
<div class="sickday-count">
|
8 |
|
|
<label for="sickdays-count-input" class="dialog-label">Počet sickdays:</label>
|
9 |
|
|
<mat-form-field>
|
10 |
|
|
<input id="sickdays-count-input" type="number" matInput [(ngModel)]="data.sickdaysCount">
|
11 |
|
|
</mat-form-field>
|
12 |
|
|
</div>
|
13 |
|
|
</div>
|
14 |
|
|
|
15 |
|
|
<div mat-dialog-actions align="end">
|
16 |
|
|
<button mat-raised-button color="primary" (click)="onConfirmClick()">Potvrdit</button>
|
17 |
|
|
<button mat-raised-button color="basic" (click)="onCloseClick()">Zavřít</button>
|
18 |
|
|
</div>
|