]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+video-channels/video-channels.component.html
Add local user subscriptions
[github/Chocobozzz/PeerTube.git] / client / src / app / +video-channels / video-channels.component.html
CommitLineData
170726f5
C
1<div *ngIf="videoChannel" class="row">
2 <div class="sub-menu">
3
4 <div class="actor">
5 <img [src]="videoChannel.avatarUrl" alt="Avatar" />
6
7 <div class="actor-info">
7de6afdf
C
8 <div class="actor-names">
9 <div class="actor-display-name">{{ videoChannel.displayName }}</div>
8a19bee1 10 <div class="actor-name">{{ videoChannel.nameWithHost }}</div>
22a16e36
C
11
12 <my-subscribe-button [videoChannel]="videoChannel"></my-subscribe-button>
7de6afdf 13 </div>
b1d40cff 14 <div i18n class="actor-followers">{{ videoChannel.followersCount }} subscribers</div>
a4f99a76 15
b1d40cff
C
16 <a [routerLink]="[ '/accounts', videoChannel.ownerBy ]" i18n-title title="Go the owner account page" class="actor-owner">
17 <span i18n>Created by {{ videoChannel.ownerBy }}</span>
a4f99a76
C
18 <img [src]="videoChannel.ownerAvatarUrl" alt="Owner account avatar" />
19 </a>
170726f5
C
20 </div>
21 </div>
22
23 <div class="links">
b1d40cff 24 <a i18n routerLink="videos" routerLinkActive="active" class="title-page">Videos</a>
b1d40cff 25 <a i18n routerLink="about" routerLinkActive="active" class="title-page">About</a>
170726f5
C
26 </div>
27 </div>
28
29 <div class="margin-content">
30 <router-outlet></router-outlet>
31 </div>
32</div>