Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | 1x | <ng-container *ngIf="activeQuoteRequest$ | async as quote"> <ng-container *ngIf="state$ | async as state"> <div class="modal-header"> <h2 class="modal-title"> <ng-container *ngIf="state === 'Submitted'; else quoteTitle"> {{ 'quote.edit.submitted.heading' | translate }} </ng-container> <ng-template #quoteTitle> {{ 'quote.edit.unsubmitted.quote_request_details.text' | translate }} - {{ quote.displayName || quote.number }} </ng-template> </h2> <button type="button" class="close" [title]="'dialog.close.text' | translate" (click)="hide()"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <ish-error-message [error]="error$ | async" /> <ng-container *ngIf="state === 'New'; else elseTemplate"> <ish-quote-edit /> </ng-container> <ng-template #elseTemplate> <ish-quote-view /> </ng-template> </div> <div class="modal-footer"> <a class="btn btn-link mr-auto" [routerLink]="['/account/quotes']">{{ 'account.quotes.widget.view_all_quotes.link' | translate }}</a> <ish-quote-interactions /> </div> </ng-container> </ng-container> <ish-loading *ngIf="loading$ | async" /> |