RTL/src/app/shared/components/help/help.component.html

22 lines
1.2 KiB
HTML
Raw Normal View History

<div fxLayout="column" fxFlex="100">
<div fxLayout="row" fxLayoutAlign="start center" class="page-title-container">
<fa-icon [icon]="faQuestion" class="page-title-img mr-1"></fa-icon>
<span class="page-title">Help</span>
</div>
<div fxLayout="row" fxFlex="100" class="padding-gap-x" fxLayoutAlign="start start">
2019-12-26 19:58:29 -05:00
<div fxLayout="column" fxFlex="100">
<div fxFlex="100" *ngFor="let helpTopic of helpTopics">
2020-01-08 18:57:51 -05:00
<mat-expansion-panel class="flat-expansion-panel help-expansion mb-2px" *ngIf="helpTopic.help.lnImplementation === 'ALL' || helpTopic.help.lnImplementation === selNode.lnImplementation">
<mat-expansion-panel-header>
2020-01-08 16:11:37 -05:00
<mat-panel-title>{{helpTopic.help.question}}</mat-panel-title>
</mat-expansion-panel-header>
2020-01-08 16:11:37 -05:00
<mat-panel-description fxLayout="column" fxFlex="100" fxLayoutAlign="start start">
<span class="pre-wrap" [innerHTML]="helpTopic.help.answer"></span>
<a class="mt-2" [routerLink]="flgLoggedIn ? helpTopic.help.link : '/login'">{{!flgLoggedIn ? 'Login to go to the page' : helpTopic.help.linkCaption}}</a>
2020-01-08 16:11:37 -05:00
</mat-panel-description>
</mat-expansion-panel>
2019-12-26 19:58:29 -05:00
</div>
</div>
</div>
</div>