mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
<div class="container">
|
|
<div class="row">
|
|
<div class="col">
|
|
<h1 class="d-none d-sm-block h3 mb-3 text-center" i18n>Holdings</h1>
|
|
<gf-activities-filter
|
|
[allFilters]="allFilters"
|
|
[isLoading]="isLoading"
|
|
[placeholder]="placeholder"
|
|
(valueChanged)="filters$.next($event)"
|
|
></gf-activities-filter>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg">
|
|
<gf-holdings-table
|
|
[baseCurrency]="user?.settings?.baseCurrency"
|
|
[deviceType]="deviceType"
|
|
[hasPermissionToCreateActivity]="hasPermissionToCreateOrder"
|
|
[locale]="user?.settings?.locale"
|
|
[positions]="positionsArray"
|
|
></gf-holdings-table>
|
|
<div
|
|
*ngIf="hasPermissionToCreateOrder && positionsArray?.length > 0"
|
|
class="text-center"
|
|
>
|
|
<a
|
|
class="mt-3"
|
|
i18n
|
|
mat-stroked-button
|
|
[routerLink]="['/portfolio', 'activities']"
|
|
>Manage Activities</a
|
|
>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|