]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+accounts/account-video-channels/account-video-channels.component.html
fix miniature fixed height, add link/title to avatar, remove pr-2 on channels list
[github/Chocobozzz/PeerTube.git] / client / src / app / +accounts / account-video-channels / account-video-channels.component.html
CommitLineData
c8487f3f 1<div class="margin-content">
d3e91a5f 2
57cfff78
C
3 <div class="no-results" i18n *ngIf="channelPagination.totalItems === 0">This account does not have channels.</div>
4
ad453580 5 <div class="channels" myInfiniteScroller (nearOfBottom)="onNearOfBottom()" [autoInit]="true" [dataObservable]="onChannelDataSubject.asObservable()">
c8487f3f
C
6 <div class="section channel" *ngFor="let videoChannel of videoChannels">
7 <div class="section-title">
dc890263 8 <a [routerLink]="getVideoChannelLink(videoChannel)" i18n-title title="See this video channel">
c8487f3f
C
9 <img [src]="videoChannel.avatarUrl" alt="Avatar" />
10
11 <div>{{ videoChannel.displayName }}</div>
9270ccf6 12 <div class="followers" i18n>{videoChannel.followersCount, plural, =1 {1 subscriber} other {{{ videoChannel.followersCount }} subscribers}}</div>
c8487f3f 13 </a>
bc01017b 14
41eb700f 15 <my-subscribe-button [videoChannels]="[videoChannel]"></my-subscribe-button>
c8487f3f
C
16 </div>
17
fff77ba2 18 <div *ngIf="getVideosOf(videoChannel)" class="videos">
41eb700f 19 <div class="no-results my-5" i18n *ngIf="getVideosOf(videoChannel).length === 0">This channel doesn't have any videos.</div>
fff77ba2 20
bfbd9128
C
21 <my-video-miniature
22 *ngFor="let video of getVideosOf(videoChannel)"
23 [video]="video" [user]="user" [displayVideoActions]="true"
24 ></my-video-miniature>
fff77ba2 25 </div>
dc890263 26
bfbd9128 27 <a *ngIf="getVideosOf(videoChannel).length !== 0" class="show-more" i18n [routerLink]="getVideoChannelLink(videoChannel)">
14571f19 28 SHOW THIS CHANNEL
dc890263 29 </a>
c8487f3f
C
30 </div>
31 </div>
32</div>