]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+accounts/account-video-channels/account-video-channels.component.html
Move concurrently in dev package
[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
c8487f3f
C
3 <div class="channels" myInfiniteScroller (nearOfBottom)="onNearOfBottom()" [autoInit]="true">
4 <div class="section channel" *ngFor="let videoChannel of videoChannels">
5 <div class="section-title">
6 <a [routerLink]="[ '/video-channels', videoChannel.nameWithHost ]" i18n-title title="See this video channel">
7 <img [src]="videoChannel.avatarUrl" alt="Avatar" />
8
9 <div>{{ videoChannel.displayName }}</div>
10 <div i18n class="followers">{{ videoChannel.followersCount }} subscribers</div>
11 </a>
bc01017b
C
12
13 <my-subscribe-button [videoChannel]="videoChannel"></my-subscribe-button>
c8487f3f
C
14 </div>
15
16 <my-video-miniature *ngFor="let video of getVideosOf(videoChannel)" [video]="video" [user]="user" [displayVideoActions]="false"></my-video-miniature>
17 </div>
18 </div>
19</div>