2021-08-07 07:12:40 +02:00
|
|
|
<div class="container">
|
|
|
|
<h3 class="d-flex justify-content-center mb-3" i18n>Portfolio</h3>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12 col-md-6">
|
|
|
|
<mat-card class="mb-3">
|
2021-12-30 18:56:51 +01:00
|
|
|
<h4 i18n>Activities</h4>
|
|
|
|
<p class="mb-0">Manage your activities.</p>
|
2021-08-07 07:12:40 +02:00
|
|
|
<p class="text-right">
|
|
|
|
<a
|
|
|
|
color="primary"
|
|
|
|
mat-button
|
2021-12-30 18:56:51 +01:00
|
|
|
[routerLink]="['/portfolio', 'activities']"
|
2021-08-07 07:12:40 +02:00
|
|
|
>
|
2021-12-30 18:56:51 +01:00
|
|
|
<span i18n>Open Activities</span>
|
|
|
|
<ion-icon class="ml-1" name="arrow-forward-outline"></ion-icon>
|
2021-08-07 07:12:40 +02:00
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
</mat-card>
|
|
|
|
</div>
|
2021-09-24 20:12:17 +02:00
|
|
|
<div class="col-xs-12 col-md-6">
|
2021-08-07 07:12:40 +02:00
|
|
|
<mat-card class="mb-3">
|
2021-09-24 20:12:17 +02:00
|
|
|
<h4 class="align-items-center d-flex">
|
|
|
|
<span i18n>Allocations</span>
|
|
|
|
<ion-icon
|
|
|
|
*ngIf="hasPermissionForSubscription"
|
|
|
|
class="ml-1 text-muted"
|
|
|
|
name="diamond-outline"
|
|
|
|
></ion-icon>
|
|
|
|
</h4>
|
2021-08-07 07:12:40 +02:00
|
|
|
<p class="mb-0">Check the allocations of your portfolio.</p>
|
|
|
|
<p class="text-right">
|
|
|
|
<a
|
|
|
|
color="primary"
|
|
|
|
mat-button
|
2021-09-24 20:12:17 +02:00
|
|
|
[disabled]="hasPermissionForSubscription && user?.settings?.viewMode !== 'DEFAULT'"
|
2021-08-07 07:12:40 +02:00
|
|
|
[routerLink]="['/portfolio', 'allocations']"
|
|
|
|
>
|
2021-12-30 18:56:51 +01:00
|
|
|
<span i18n>Open Allocations</span>
|
|
|
|
<ion-icon class="ml-1" name="arrow-forward-outline"></ion-icon>
|
2021-08-07 07:12:40 +02:00
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
</mat-card>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
2021-09-24 20:12:17 +02:00
|
|
|
<div class="col-xs-12 col-md-6">
|
2021-08-07 07:12:40 +02:00
|
|
|
<mat-card class="mb-3">
|
2021-09-24 20:12:17 +02:00
|
|
|
<h4 class="align-items-center d-flex">
|
|
|
|
<span i18n>Analysis</span>
|
|
|
|
<ion-icon
|
|
|
|
*ngIf="hasPermissionForSubscription"
|
|
|
|
class="ml-1 text-muted"
|
|
|
|
name="diamond-outline"
|
|
|
|
></ion-icon>
|
|
|
|
</h4>
|
2021-08-07 07:12:40 +02:00
|
|
|
<p class="mb-0">Ghostfolio Analysis visualizes your portfolio.</p>
|
|
|
|
<p class="text-right">
|
|
|
|
<a
|
|
|
|
color="primary"
|
|
|
|
mat-button
|
2021-09-24 20:12:17 +02:00
|
|
|
[disabled]="hasPermissionForSubscription && user?.settings?.viewMode !== 'DEFAULT'"
|
2021-08-07 07:12:40 +02:00
|
|
|
[routerLink]="['/portfolio', 'analysis']"
|
|
|
|
>
|
2021-12-30 18:56:51 +01:00
|
|
|
<span i18n>Open Analysis</span>
|
|
|
|
<ion-icon class="ml-1" name="arrow-forward-outline"></ion-icon>
|
2021-08-07 07:12:40 +02:00
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
</mat-card>
|
|
|
|
</div>
|
2021-09-24 20:12:17 +02:00
|
|
|
<div class="col-xs-12 col-md-6">
|
2021-08-07 07:12:40 +02:00
|
|
|
<mat-card class="mb-3">
|
2021-09-24 20:12:17 +02:00
|
|
|
<h4 class="align-items-center d-flex">
|
|
|
|
<span i18n>X-ray</span>
|
|
|
|
<ion-icon
|
|
|
|
*ngIf="hasPermissionForSubscription"
|
|
|
|
class="ml-1 text-muted"
|
|
|
|
name="diamond-outline"
|
|
|
|
></ion-icon>
|
|
|
|
</h4>
|
2021-08-07 07:12:40 +02:00
|
|
|
<p class="mb-0">
|
|
|
|
Ghostfolio X-ray uses static analysis to identify potential issues and
|
|
|
|
risks in your portfolio.
|
|
|
|
</p>
|
|
|
|
<p class="text-right">
|
|
|
|
<a
|
|
|
|
color="primary"
|
|
|
|
mat-button
|
2021-09-24 20:12:17 +02:00
|
|
|
[disabled]="hasPermissionForSubscription && user?.settings?.viewMode !== 'DEFAULT'"
|
2021-08-07 07:12:40 +02:00
|
|
|
[routerLink]="['/portfolio', 'report']"
|
|
|
|
>
|
2021-12-30 18:56:51 +01:00
|
|
|
<span i18n>Open X-ray</span>
|
|
|
|
<ion-icon class="ml-1" name="arrow-forward-outline"></ion-icon>
|
2021-08-07 07:12:40 +02:00
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
</mat-card>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|