1 <ng-template #dialogContent>
2 <div class="modal-header bg-info">
3 <h4 class="modal-title" *ngIf="isExport" i18n>Export</h4>
4 <h4 class="modal-title" *ngIf="!isExport" i18n>Import</h4>
5 <button type="button" class="btn-close btn-close-white"
6 i18n-aria-label aria-label="Close" (click)="close()"></button>
8 <div class="modal-body">
10 <div class="col-md-12">
11 <span *ngIf="isExport" i18n>
12 Copy this to your clipboard and save it to a file to export the settings.
14 <span *ngIf="!isExport" i18n>
15 Paste in your exported settings.
19 <div class="row mt-3">
20 <div class="col-md-12">
21 <textarea class="form-control" [(ngModel)]="jsonData" rows="4"></textarea>
24 <div class="row mt-3" *ngIf="!isExport">
25 <div class="col-md-3">
26 <button class="btn btn-outline-dark" i18n (click)="update()">Submit</button>