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.
29 lines
803 B
29 lines
803 B
<div
|
|
class="card-container position-relative"
|
|
[ngClass]="{ premium: name === 'Premium' }"
|
|
>
|
|
<a
|
|
class="card-item d-flex flex-column justify-content-between p-4"
|
|
[routerLink]="routerLinkPricing"
|
|
>
|
|
<div class="d-flex justify-content-end">
|
|
<gf-logo
|
|
size="large"
|
|
[ngClass]="{ 'text-muted': name === 'Basic' }"
|
|
[showLabel]="false"
|
|
/>
|
|
</div>
|
|
<div class="d-flex justify-content-between">
|
|
<div>
|
|
<div class="heading text-muted" i18n>Membership</div>
|
|
<div class="text-truncate value">{{ name }}</div>
|
|
</div>
|
|
<div *ngIf="expiresAt">
|
|
<div class="heading text-muted" i18n>Valid until</div>
|
|
<div class="text-truncate value">
|
|
{{ expiresAt }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|