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 | 1x | <a id="order-list-top" title="top"></a> <h1>{{ 'account.order_history.heading' | translate }}</h1> <ish-error-message [error]="ordersError$ | async" /> <p class="section">{{ 'account.order.subtitle' | translate }}</p> <ish-account-order-filters fragmentOnRouting="order-list-top" (modelChange)="loadFilteredOrders($event)" [ngClass]="{ 'd-none': !filtersActive && !(orders$ | async)?.length }" /> <ish-order-list [orders]="orders$ | async" [columnsToDisplay]="columnsToDisplay$ | async" [noOrdersMessageKey]=" !filtersActive ? 'account.orderlist.no_placed_orders_message' : 'account.order_history.filter.no_results_found_message' " [loading]="ordersLoading$ | async" /> <div *ngIf="moreOrdersAvailable$ | async" class="d-flex justify-content-center"> <button class="btn btn-secondary" (click)="loadMoreOrders()" [disabled]="ordersLoading$ | async"> {{ 'account.order.load_more' | translate }} </button> </div> <h4 class="form-text">{{ 'account.order.questions.title' | translate }}</h4> <p class="form-text" [ishServerHtml]=" 'account.order.questions.note' | translate : { '0': 'page://page.helpdesk.pagelet2-Page', '1': 'route://contact' } " ></p> |