1
|
<h1 mat-dialog-title>{{ 'defaultSettings.headline' | translate }} </h1>
|
2
|
|
3
|
<div mat-dialog-content>
|
4
|
<span class="dialog-label">{{ 'defaultSettings.notification' | translate }}</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">{{ 'defaultSettings.sickdayCount' | translate }}</label>
|
9
|
<mat-form-field>
|
10
|
<input id="sickdays-count-input" type="number" min="0" matInput [(ngModel)]="data.sickDayCount">
|
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()">{{ 'button.confirm' | translate }}</button>
|
17
|
<button mat-raised-button color="basic" (click)="onCloseClick()">{{ 'button.close' | translate }}</button>
|
18
|
</div>
|