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.
31 lines
923 B
31 lines
923 B
<div class="container">
|
|
<div class="row mb-3">
|
|
<div class="col">
|
|
<h3 class="d-flex justify-content-center mb-3" i18n>Accounts</h3>
|
|
<gf-accounts-table
|
|
[accounts]="accounts"
|
|
[baseCurrency]="user?.settings?.baseCurrency"
|
|
[deviceType]="deviceType"
|
|
[locale]="user?.settings?.locale"
|
|
[showActions]="!hasImpersonationId && hasPermissionToDeleteAccount"
|
|
(accountDeleted)="onDeleteAccount($event)"
|
|
(accountToUpdate)="onUpdateAccount($event)"
|
|
></gf-accounts-table>
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
*ngIf="!hasImpersonationId && hasPermissionToCreateAccount"
|
|
class="fab-container"
|
|
>
|
|
<a
|
|
class="align-items-center d-flex justify-content-center"
|
|
color="primary"
|
|
mat-fab
|
|
[routerLink]="[]"
|
|
[queryParams]="{ createDialog: true }"
|
|
>
|
|
<ion-icon name="add-outline" size="large"></ion-icon>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|