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="close"
6 i18n-aria-label aria-label="Close" (click)="close()">
7 <span aria-hidden="true">×</span>
10 <div class="modal-body">
12 <div class="col-md-12">
13 <span *ngIf="isExport" i18n>
14 Copy this to your clipboard and save it to a file to export the settings.
16 <span *ngIf="!isExport" i18n>
17 Paste in your exported settings.
21 <div class="row mt-3">
22 <div class="col-md-12">
23 <textarea class="form-control" [(ngModel)]="jsonData" rows="4"></textarea>
26 <div class="row mt-3" *ngIf="!isExport">
27 <div class="col-md-3">
28 <button class="btn btn-outline-dark" i18n (click)="update()">Submit</button>