2020-10-07 17:15:02 +02:00
|
|
|
<span class="title" mat-dialog-title>{{data.titleKey | translate: data.titleParam}}</span>
|
2020-07-08 10:00:15 +02:00
|
|
|
<div mat-dialog-content>
|
2020-10-07 17:15:02 +02:00
|
|
|
<p class="desc"> {{data.descriptionKey | translate: data.descriptionParam}}</p>
|
2020-07-08 10:00:15 +02:00
|
|
|
</div>
|
|
|
|
<div mat-dialog-actions class="action">
|
2020-07-24 09:48:58 +02:00
|
|
|
<button *ngIf="data.cancelKey" mat-button (click)="closeDialog()">
|
2020-07-08 10:00:15 +02:00
|
|
|
{{data.cancelKey | translate}}
|
|
|
|
</button>
|
2020-07-24 09:48:58 +02:00
|
|
|
<span class="fill-space"></span>
|
2020-07-08 10:00:15 +02:00
|
|
|
<button color="warn" mat-raised-button class="ok-button" (click)="closeDialogWithSuccess()">
|
|
|
|
{{data.confirmKey | translate}}
|
|
|
|
</button>
|
|
|
|
</div>
|