mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-04-04 00:01:46 -04:00
15 lines
639 B
HTML
15 lines
639 B
HTML
<ng-container *transloco="let t; prefix: 'collection-owner'">
|
|
@if (accountService.currentUser$ | async; as user) {
|
|
<div class="fw-light text-accent">
|
|
{{t('collection-created-label', {owner: collection.owner})}}
|
|
@if(collection.source !== ScrobbleProvider.Kavita) {
|
|
{{t('collection-via-label')}}
|
|
<app-image [imageUrl]="collection.source | providerImage"
|
|
width="16px" height="16px"
|
|
[ngbTooltip]="collection.source | scrobbleProviderName"
|
|
[attr.aria-label]="collection.source | scrobbleProviderName"></app-image>
|
|
}
|
|
</div>
|
|
}
|
|
</ng-container>
|