21 lines
608 B
HTML
21 lines
608 B
HTML
<div class="delete-dialog-icon">
|
|
<mat-icon aria-hidden="true">delete_forever</mat-icon>
|
|
</div>
|
|
|
|
<h2 mat-dialog-title>Template loeschen?</h2>
|
|
|
|
<mat-dialog-content>
|
|
<p>
|
|
<strong>{{ data.templateName }}</strong> wird dauerhaft geloescht. Bereits daraus erstellte
|
|
Listen bleiben erhalten.
|
|
</p>
|
|
</mat-dialog-content>
|
|
|
|
<mat-dialog-actions align="end">
|
|
<button mat-button type="button" mat-dialog-close>Abbrechen</button>
|
|
<button mat-flat-button type="button" color="warn" [mat-dialog-close]="true">
|
|
<mat-icon aria-hidden="true">delete</mat-icon>
|
|
Loeschen
|
|
</button>
|
|
</mat-dialog-actions>
|