]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+accounts/account-video-channels/account-video-channels.component.html
Merge pull request #1105 from BO41/unused-imports
[github/Chocobozzz/PeerTube.git] / client / src / app / +accounts / account-video-channels / account-video-channels.component.html
CommitLineData
d3e91a5f
C
1<div *ngIf="account" class="row">
2 <a
f5b0af50 3 *ngFor="let videoChannel of videoChannels" [routerLink]="[ '/video-channels', videoChannel.nameWithHost ]"
b1d40cff 4 class="video-channel" i18n-title title="See this video channel"
d3e91a5f
C
5 >
6 <img [src]="videoChannel.avatarUrl" alt="Avatar" />
7
8 <div class="video-channel-display-name">{{ videoChannel.displayName }}</div>
b1d40cff 9 <div i18n class="video-channel-followers">{{ videoChannel.followersCount }} subscribers</div>
d3e91a5f
C
10 </a>
11</div>