10 lines
442 B
HTML
10 lines
442 B
HTML
<h1 mat-dialog-title>Forget All Missed Schedules </h1>
|
|
<div mat-dialog-content>
|
|
<p>Are you sure you want to forget all missed schedules? This would delete <b>{{this.missedSchedules.length}}</b> schedules.</p>
|
|
<p>This <b>cannot</b> be undone!</p>
|
|
</div>
|
|
<div mat-dialog-actions align="end">
|
|
<button mat-raised-button (click)="cancel()">Cancel</button>
|
|
<button mat-raised-button color="warn" (click)="confirm()">Confirm</button>
|
|
</div>
|