mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-05-27 18:12:34 -04:00
8def92ff73
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
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>
|