Kavita/UI/Web/src/app/collections/_components/collection-owner/collection-owner.component.html
Joe Milazzo 8def92ff73
More Epub Fixes (#4017)
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
2025-09-05 07:45:16 -07:00

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>