Browse Source

Add text to icons

pull/2135/head
Thomas 2 years ago
parent
commit
b16482fe27
  1. 52
      apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html

52
apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html

@ -77,18 +77,18 @@
Open Source Software Open Source Software
</td> </td>
<td class="mat-mdc-cell px-1 py-2"> <td class="mat-mdc-cell px-1 py-2">
<ng-container *ngIf="product1.isOpenSource === true" <ng-container *ngIf="product1.isOpenSource === true" i18n
>✅</ng-container >✅ Yes</ng-container
><ng-container *ngIf="product1.isOpenSource === false" ><ng-container *ngIf="product1.isOpenSource === false" i18n
>❌</ng-container >❌ No</ng-container
> >
</td> </td>
<td class="mat-mdc-cell px-1 py-2"> <td class="mat-mdc-cell px-1 py-2">
<ng-container *ngIf="product2.isOpenSource === true" <ng-container *ngIf="product2.isOpenSource === true" i18n
>✅</ng-container >✅ Yes</ng-container
><ng-container *ngIf="product2.isOpenSource === false" ><ng-container *ngIf="product2.isOpenSource === false" i18n
>❌</ng-container >❌ No
> </ng-container>
</td> </td>
</tr> </tr>
<tr class="mat-mdc-row"> <tr class="mat-mdc-row">
@ -96,19 +96,25 @@
Self-Hosting Self-Hosting
</td> </td>
<td class="mat-mdc-cell px-1 py-2"> <td class="mat-mdc-cell px-1 py-2">
<ng-container *ngIf="product1.hasSelfHostingAbility === true" <ng-container
>✅</ng-container *ngIf="product1.hasSelfHostingAbility === true"
i18n
>✅ Yes</ng-container
><ng-container ><ng-container
*ngIf="product1.hasSelfHostingAbility === false" *ngIf="product1.hasSelfHostingAbility === false"
>❌</ng-container i18n
>❌ No</ng-container
> >
</td> </td>
<td class="mat-mdc-cell px-1 py-2"> <td class="mat-mdc-cell px-1 py-2">
<ng-container *ngIf="product2.hasSelfHostingAbility === true" <ng-container
>✅</ng-container *ngIf="product2.hasSelfHostingAbility === true"
i18n
>✅ Yes</ng-container
><ng-container ><ng-container
*ngIf="product2.hasSelfHostingAbility === false" *ngIf="product2.hasSelfHostingAbility === false"
>❌</ng-container i18n
>❌ No</ng-container
> >
</td> </td>
</tr> </tr>
@ -117,17 +123,17 @@
Free Plan Free Plan
</td> </td>
<td class="mat-mdc-cell px-1 py-2"> <td class="mat-mdc-cell px-1 py-2">
<ng-container *ngIf="product1.hasFreePlan === true" <ng-container *ngIf="product1.hasFreePlan === true" i18n
>✅</ng-container >✅ Yes</ng-container
><ng-container *ngIf="product1.hasFreePlan === false" ><ng-container *ngIf="product1.hasFreePlan === false" i18n
>❌</ng-container >❌ No</ng-container
> >
</td> </td>
<td class="mat-mdc-cell px-1 py-2"> <td class="mat-mdc-cell px-1 py-2">
<ng-container *ngIf="product2.hasFreePlan === true" <ng-container *ngIf="product2.hasFreePlan === true" i18n
>✅</ng-container >✅ Yes</ng-container
><ng-container *ngIf="product2.hasFreePlan === false" ><ng-container *ngIf="product2.hasFreePlan === false" i18n
>❌</ng-container >❌ No</ng-container
> >
</td> </td>
</tr> </tr>

Loading…
Cancel
Save