25 lines
1.1 KiB
HTML
25 lines
1.1 KiB
HTML
<div class="modal-header">
|
|
<h4 class="modal-title pull-left">{{ title }}</h4>
|
|
<button type="button" class="close pull-right" aria-label="Close" (click)="modalRef.hide()">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<ng-container [ngTemplateOutlet]="template"
|
|
[ngTemplateOutletContext]="{ $implicit: commandModel, loading: loading }"></ng-container>
|
|
<div *ngIf="validationMessage" class="alert alert-danger mt-2" style="white-space: pre-wrap">{{validationMessage}}</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-light" (click)="modalRef.hide()"
|
|
[disabled]="loading">{{ cancelText }}</button>
|
|
<button type="button" class="btn btn-{{btnClass}}" [disabled]="loading" (click)="onSubmit()">{{ commandText }}</button>
|
|
<br>
|
|
|
|
<div class="progress" style="width: 100%" *ngIf="loading">
|
|
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="100"
|
|
aria-valuemin="0" aria-valuemax="100" style="width: 100%"></div>
|
|
</div>
|
|
|
|
</div>
|
|
|