2019-12-01 19:22:25 -05:00
< div fxLayout = "column" fxFlex = "100" >
2020-12-20 18:36:04 -05:00
< div fxLayout = "row" fxLayoutAlign = "start center" class = "page-title-container" >
2019-12-01 19:22:25 -05:00
< 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" >
2019-03-18 20:13:01 -04:00
< mat-expansion-panel-header >
2020-01-08 16:11:37 -05:00
< mat-panel-title > {{helpTopic.help.question}}< / mat-panel-title >
2019-03-18 20:13:01 -04:00
< / 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 ? LNPLink + helpTopic . help . link : ' / login ' " > {{!flgLoggedIn ? 'Login to go to the page' : helpTopic.help.linkCaption}}< / a >
< / mat-panel-description >
2019-03-18 20:13:01 -04:00
< / mat-expansion-panel >
2019-12-26 19:58:29 -05:00
< / div >
< / div >
2019-03-18 20:13:01 -04:00
< / div >
2019-12-01 19:22:25 -05:00
< / div >