|
@ -8,7 +8,7 @@ |
|
|
class="d-none d-sm-block" |
|
|
class="d-none d-sm-block" |
|
|
i18n |
|
|
i18n |
|
|
mat-flat-button |
|
|
mat-flat-button |
|
|
[color]="currentRoute?.startsWith('home') ? 'primary' : null" |
|
|
[color]="currentRoute === 'home' ? 'primary' : null" |
|
|
[routerLink]="['/']" |
|
|
[routerLink]="['/']" |
|
|
>Overview</a |
|
|
>Overview</a |
|
|
> |
|
|
> |
|
@ -16,7 +16,7 @@ |
|
|
class="d-none d-sm-block mx-1" |
|
|
class="d-none d-sm-block mx-1" |
|
|
i18n |
|
|
i18n |
|
|
mat-flat-button |
|
|
mat-flat-button |
|
|
[color]="currentRoute?.startsWith('analysis') ? 'primary' : null" |
|
|
[color]="currentRoute === 'analysis' ? 'primary' : null" |
|
|
[routerLink]="['/analysis']" |
|
|
[routerLink]="['/analysis']" |
|
|
>Analysis</a |
|
|
>Analysis</a |
|
|
> |
|
|
> |
|
@ -24,7 +24,7 @@ |
|
|
class="d-none d-sm-block mx-1" |
|
|
class="d-none d-sm-block mx-1" |
|
|
i18n |
|
|
i18n |
|
|
mat-flat-button |
|
|
mat-flat-button |
|
|
[color]="currentRoute?.startsWith('report') ? 'primary' : null" |
|
|
[color]="currentRoute === 'report' ? 'primary' : null" |
|
|
[routerLink]="['/report']" |
|
|
[routerLink]="['/report']" |
|
|
>X-ray</a |
|
|
>X-ray</a |
|
|
> |
|
|
> |
|
@ -32,7 +32,7 @@ |
|
|
class="d-none d-sm-block mx-1" |
|
|
class="d-none d-sm-block mx-1" |
|
|
i18n |
|
|
i18n |
|
|
mat-flat-button |
|
|
mat-flat-button |
|
|
[color]="currentRoute?.startsWith('transactions') ? 'primary' : null" |
|
|
[color]="currentRoute === 'transactions' ? 'primary' : null" |
|
|
[routerLink]="['/transactions']" |
|
|
[routerLink]="['/transactions']" |
|
|
>Transactions</a |
|
|
>Transactions</a |
|
|
> |
|
|
> |
|
@ -40,7 +40,7 @@ |
|
|
class="d-none d-sm-block mx-1" |
|
|
class="d-none d-sm-block mx-1" |
|
|
i18n |
|
|
i18n |
|
|
mat-flat-button |
|
|
mat-flat-button |
|
|
[color]="currentRoute?.startsWith('accounts') ? 'primary' : null" |
|
|
[color]="currentRoute === 'accounts' ? 'primary' : null" |
|
|
[routerLink]="['/accounts']" |
|
|
[routerLink]="['/accounts']" |
|
|
>Accounts</a |
|
|
>Accounts</a |
|
|
> |
|
|
> |
|
@ -49,7 +49,7 @@ |
|
|
class="d-none d-sm-block mx-1" |
|
|
class="d-none d-sm-block mx-1" |
|
|
i18n |
|
|
i18n |
|
|
mat-flat-button |
|
|
mat-flat-button |
|
|
[color]="currentRoute?.startsWith('admin') ? 'primary' : null" |
|
|
[color]="currentRoute === 'admin' ? 'primary' : null" |
|
|
[routerLink]="['/admin']" |
|
|
[routerLink]="['/admin']" |
|
|
>Admin Control</a |
|
|
>Admin Control</a |
|
|
> |
|
|
> |
|
@ -57,7 +57,7 @@ |
|
|
class="d-none d-sm-block mx-1" |
|
|
class="d-none d-sm-block mx-1" |
|
|
i18n |
|
|
i18n |
|
|
mat-flat-button |
|
|
mat-flat-button |
|
|
[color]="currentRoute?.startsWith('resources') ? 'primary' : null" |
|
|
[color]="currentRoute === 'resources' ? 'primary' : null" |
|
|
[routerLink]="['/resources']" |
|
|
[routerLink]="['/resources']" |
|
|
>Resources</a |
|
|
>Resources</a |
|
|
> |
|
|
> |
|
@ -66,7 +66,7 @@ |
|
|
class="d-none d-sm-block mx-1" |
|
|
class="d-none d-sm-block mx-1" |
|
|
i18n |
|
|
i18n |
|
|
mat-flat-button |
|
|
mat-flat-button |
|
|
[color]="currentRoute?.startsWith('pricing') ? 'primary' : null" |
|
|
[color]="currentRoute === 'pricing' ? 'primary' : null" |
|
|
[routerLink]="['/pricing']" |
|
|
[routerLink]="['/pricing']" |
|
|
>Pricing</a |
|
|
>Pricing</a |
|
|
> |
|
|
> |
|
@ -74,7 +74,7 @@ |
|
|
class="d-none d-sm-block mx-1" |
|
|
class="d-none d-sm-block mx-1" |
|
|
i18n |
|
|
i18n |
|
|
mat-flat-button |
|
|
mat-flat-button |
|
|
[color]="currentRoute?.startsWith('about') ? 'primary' : null" |
|
|
[color]="currentRoute === 'about' ? 'primary' : null" |
|
|
[routerLink]="['/about']" |
|
|
[routerLink]="['/about']" |
|
|
>About</a |
|
|
>About</a |
|
|
> |
|
|
> |
|
@ -138,7 +138,7 @@ |
|
|
class="d-block d-sm-none" |
|
|
class="d-block d-sm-none" |
|
|
i18n |
|
|
i18n |
|
|
mat-menu-item |
|
|
mat-menu-item |
|
|
[ngClass]="{ 'font-weight-bold': currentRoute?.startsWith('analysis') }" |
|
|
[ngClass]="{ 'font-weight-bold': currentRoute === 'analysis' }" |
|
|
[routerLink]="['/analysis']" |
|
|
[routerLink]="['/analysis']" |
|
|
>Analysis</a |
|
|
>Analysis</a |
|
|
> |
|
|
> |
|
@ -146,7 +146,7 @@ |
|
|
class="d-block d-sm-none" |
|
|
class="d-block d-sm-none" |
|
|
i18n |
|
|
i18n |
|
|
mat-menu-item |
|
|
mat-menu-item |
|
|
[ngClass]="{ 'font-weight-bold': currentRoute?.startsWith('report') }" |
|
|
[ngClass]="{ 'font-weight-bold': currentRoute === 'report' }" |
|
|
[routerLink]="['/report']" |
|
|
[routerLink]="['/report']" |
|
|
>X-ray</a |
|
|
>X-ray</a |
|
|
> |
|
|
> |
|
@ -155,7 +155,7 @@ |
|
|
i18n |
|
|
i18n |
|
|
mat-menu-item |
|
|
mat-menu-item |
|
|
[ngClass]="{ |
|
|
[ngClass]="{ |
|
|
'font-weight-bold': currentRoute?.startsWith('transactions') |
|
|
'font-weight-bold': currentRoute === 'transactions' |
|
|
}" |
|
|
}" |
|
|
[routerLink]="['/transactions']" |
|
|
[routerLink]="['/transactions']" |
|
|
>Transactions</a |
|
|
>Transactions</a |
|
@ -164,7 +164,7 @@ |
|
|
class="d-block d-sm-none" |
|
|
class="d-block d-sm-none" |
|
|
i18n |
|
|
i18n |
|
|
mat-menu-item |
|
|
mat-menu-item |
|
|
[ngClass]="{ 'font-weight-bold': currentRoute?.startsWith('accounts') }" |
|
|
[ngClass]="{ 'font-weight-bold': currentRoute === 'accounts' }" |
|
|
[routerLink]="['/accounts']" |
|
|
[routerLink]="['/accounts']" |
|
|
>Accounts</a |
|
|
>Accounts</a |
|
|
> |
|
|
> |
|
@ -172,7 +172,7 @@ |
|
|
class="align-items-center d-flex" |
|
|
class="align-items-center d-flex" |
|
|
i18n |
|
|
i18n |
|
|
mat-menu-item |
|
|
mat-menu-item |
|
|
[ngClass]="{ 'font-weight-bold': currentRoute?.startsWith('account') }" |
|
|
[ngClass]="{ 'font-weight-bold': currentRoute === 'account' }" |
|
|
[routerLink]="['/account']" |
|
|
[routerLink]="['/account']" |
|
|
>Ghostfolio Account</a |
|
|
>Ghostfolio Account</a |
|
|
> |
|
|
> |
|
@ -181,7 +181,7 @@ |
|
|
class="d-block d-sm-none" |
|
|
class="d-block d-sm-none" |
|
|
i18n |
|
|
i18n |
|
|
mat-menu-item |
|
|
mat-menu-item |
|
|
[ngClass]="{ 'font-weight-bold': currentRoute?.startsWith('admin') }" |
|
|
[ngClass]="{ 'font-weight-bold': currentRoute === 'admin' }" |
|
|
[routerLink]="['/admin']" |
|
|
[routerLink]="['/admin']" |
|
|
>Admin Control</a |
|
|
>Admin Control</a |
|
|
> |
|
|
> |
|
@ -191,7 +191,7 @@ |
|
|
i18n |
|
|
i18n |
|
|
mat-menu-item |
|
|
mat-menu-item |
|
|
[ngClass]="{ |
|
|
[ngClass]="{ |
|
|
'font-weight-bold': currentRoute?.startsWith('resources') |
|
|
'font-weight-bold': currentRoute === 'resources' |
|
|
}" |
|
|
}" |
|
|
[routerLink]="['/resources']" |
|
|
[routerLink]="['/resources']" |
|
|
>Resources</a |
|
|
>Resources</a |
|
@ -201,7 +201,7 @@ |
|
|
class="d-block d-sm-none" |
|
|
class="d-block d-sm-none" |
|
|
i18n |
|
|
i18n |
|
|
mat-menu-item |
|
|
mat-menu-item |
|
|
[ngClass]="{ 'font-weight-bold': currentRoute?.startsWith('pricing') }" |
|
|
[ngClass]="{ 'font-weight-bold': currentRoute === 'pricing' }" |
|
|
[routerLink]="['/pricing']" |
|
|
[routerLink]="['/pricing']" |
|
|
>Pricing</a |
|
|
>Pricing</a |
|
|
> |
|
|
> |
|
@ -209,7 +209,7 @@ |
|
|
class="d-block d-sm-none" |
|
|
class="d-block d-sm-none" |
|
|
i18n |
|
|
i18n |
|
|
mat-menu-item |
|
|
mat-menu-item |
|
|
[ngClass]="{ 'font-weight-bold': currentRoute?.startsWith('about') }" |
|
|
[ngClass]="{ 'font-weight-bold': currentRoute === 'about' }" |
|
|
[routerLink]="['/about']" |
|
|
[routerLink]="['/about']" |
|
|
>About Ghostfolio</a |
|
|
>About Ghostfolio</a |
|
|
> |
|
|
> |
|
@ -231,7 +231,7 @@ |
|
|
*ngIf="hasPermissionForSubscription" |
|
|
*ngIf="hasPermissionForSubscription" |
|
|
i18n |
|
|
i18n |
|
|
mat-flat-button |
|
|
mat-flat-button |
|
|
[color]="currentRoute?.startsWith('pricing') ? 'primary' : null" |
|
|
[color]="currentRoute === 'pricing' ? 'primary' : null" |
|
|
[routerLink]="['/pricing']" |
|
|
[routerLink]="['/pricing']" |
|
|
>Pricing</a |
|
|
>Pricing</a |
|
|
> |
|
|
> |
|
@ -239,7 +239,7 @@ |
|
|
class="d-none d-sm-block mx-1" |
|
|
class="d-none d-sm-block mx-1" |
|
|
i18n |
|
|
i18n |
|
|
mat-flat-button |
|
|
mat-flat-button |
|
|
[color]="currentRoute?.startsWith('about') ? 'primary' : null" |
|
|
[color]="currentRoute === 'about' ? 'primary' : null" |
|
|
[routerLink]="['/about']" |
|
|
[routerLink]="['/about']" |
|
|
>About</a |
|
|
>About</a |
|
|
> |
|
|
> |
|
|