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.
33 lines
904 B
33 lines
904 B
<div class="container">
|
|
<h1 class="d-none d-sm-block h3 mb-4">
|
|
<span class="align-items-center d-flex justify-content-center">
|
|
<span i18n>Watchlist</span>
|
|
@if (user?.subscription?.type === 'Basic') {
|
|
<gf-premium-indicator class="ml-1" />
|
|
}
|
|
</span>
|
|
</h1>
|
|
<div class="mb-3 row">
|
|
<div class="col-xs-12 col-md-8 offset-md-2">
|
|
<gf-benchmark
|
|
[benchmarks]="watchlist"
|
|
[deviceType]="deviceType"
|
|
[locale]="user?.settings?.locale || undefined"
|
|
[user]="user"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@if (hasPermissionToCreateWatchlistItem) {
|
|
<div class="fab-container">
|
|
<a
|
|
class="align-items-center d-flex justify-content-center"
|
|
color="primary"
|
|
mat-fab
|
|
[queryParams]="{ createWatchlistItemDialog: true }"
|
|
[routerLink]="[]"
|
|
>
|
|
<ion-icon name="add-outline" size="large" />
|
|
</a>
|
|
</div>
|
|
}
|
|
|