diff options
author | Chocobozzz <me@florianbigard.com> | 2018-04-25 15:43:19 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-04-25 15:43:19 +0200 |
commit | d3e91a5f72ac9c986cdb67d7d6c85bb4819e680c (patch) | |
tree | 3c2406346c7774587ba4e095ab595e5953e25c61 /client/src/app/+account/account-video-channels/account-video-channels.component.html | |
parent | 03e12d7c4954e1071fdeb7ef362ea5c3965d4075 (diff) | |
download | PeerTube-d3e91a5f72ac9c986cdb67d7d6c85bb4819e680c.tar.gz PeerTube-d3e91a5f72ac9c986cdb67d7d6c85bb4819e680c.tar.zst PeerTube-d3e91a5f72ac9c986cdb67d7d6c85bb4819e680c.zip |
Add video channel account list
Diffstat (limited to 'client/src/app/+account/account-video-channels/account-video-channels.component.html')
-rw-r--r-- | client/src/app/+account/account-video-channels/account-video-channels.component.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/client/src/app/+account/account-video-channels/account-video-channels.component.html b/client/src/app/+account/account-video-channels/account-video-channels.component.html new file mode 100644 index 000000000..d20b40c60 --- /dev/null +++ b/client/src/app/+account/account-video-channels/account-video-channels.component.html | |||
@@ -0,0 +1,11 @@ | |||
1 | <div *ngIf="account" class="row"> | ||
2 | <a | ||
3 | *ngFor="let videoChannel of videoChannels" [routerLink]="[ '/video-channels', videoChannel.uuid ]" | ||
4 | class="video-channel" title="See this video channel" | ||
5 | > | ||
6 | <img [src]="videoChannel.avatarUrl" alt="Avatar" /> | ||
7 | |||
8 | <div class="video-channel-display-name">{{ videoChannel.displayName }}</div> | ||
9 | <div class="video-channel-followers">{{ videoChannel.followersCount }} subscribers</div> | ||
10 | </a> | ||
11 | </div> \ No newline at end of file | ||