You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/eclair/routing/routing.component.html

25 lines
1.3 KiB
HTML

<div fxLayout="column">
<div fxLayout="row" fxLayoutAlign="start center" class="padding-gap-x page-title-container">
<fa-icon [icon]="faMapSigns" class="page-title-img mr-1"></fa-icon>
<span class="page-title">Routing</span>
</div>
<div fxLayout="row" fxFlex="100" fxLayoutAlign="start start" class="padding-gap-x">
<mat-card fxLayout="row" fxFlex="100" fxLayoutAlign="start start">
<mat-card-content fxLayout="column" fxFlex="100" fxLayoutAlign="start start">
<div fxLayout="row" fxFlex="100" [ngClass]="{'error-border w-100 routing-tabs-block': flgLoading[0]==='error', 'w-100 routing-tabs-block': true}">
<mat-tab-group fxLayout="column" fxFlex="100">
<mat-tab label="Forwarding History">
<div class="p-2" *ngIf="errorMessage !== ''">{{errorMessage}}</div>
<rtl-ecl-forwarding-history *ngIf="errorMessage === ''" [successfulEvents]="events"></rtl-ecl-forwarding-history>
</mat-tab>
<mat-tab label="Routing Peers">
<div class="p-2" *ngIf="errorMessage !== ''">{{errorMessage}}</div>
<rtl-ecl-routing-peers *ngIf="errorMessage === '' && events" [routingPeersData]="events"></rtl-ecl-routing-peers>
</mat-tab>
</mat-tab-group>
</div>
</mat-card-content>
</mat-card>
</div>
</div>