]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-video-channels/my-account-video-channels.component.html
Fix server build
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-video-channels / my-account-video-channels.component.html
CommitLineData
c9e3565d 1<h1 class="sr-only" i18n>My channels</h1>
08c1efbe
C
2<div class="video-channels-header">
3 <a class="create-button" routerLink="create">
6ad971d5 4 <my-global-icon iconName="add" aria-hidden="true"></my-global-icon>
8c966daa 5 <ng-container i18n>Create video channel</ng-container>
08c1efbe
C
6 </a>
7</div>
8
9<div class="video-channels">
8165d00a 10 <div *ngFor="let videoChannel of videoChannels; let i = index" class="video-channel">
f5b0af50 11 <a [routerLink]="[ '/video-channels', videoChannel.nameWithHost ]">
08c1efbe
C
12 <img [src]="videoChannel.avatarUrl" alt="Avatar" />
13 </a>
14
15 <div class="video-channel-info">
f5b0af50 16 <a [routerLink]="[ '/video-channels', videoChannel.nameWithHost ]" class="video-channel-names" i18n-title title="Go to the channel">
08c1efbe 17 <div class="video-channel-display-name">{{ videoChannel.displayName }}</div>
f5b0af50 18 <div class="video-channel-name">{{ videoChannel.nameWithHost }}</div>
08c1efbe
C
19 </a>
20
8165d00a
RK
21 <div i18n class="video-channel-followers">{videoChannel.followersCount, plural, =1 {1 subscriber} other {{{ videoChannel.followersCount }} subscribers}}</div>
22
1ba471c5
C
23 <div i18n class="video-channel-videos">{videoChannel.videosCount, plural, =0 {No videos} =1 {1 video} other {{{ videoChannel.videosCount }} videos}}</div>
24
8a3183e5
K
25 <div class="video-channel-buttons">
26 <my-edit-button [routerLink]="[ 'update', videoChannel.nameWithHost ]"></my-edit-button>
27 <my-delete-button (click)="deleteVideoChannel(videoChannel)"></my-delete-button>
28 </div>
29
8165d00a 30 <div *ngIf="!isInSmallView" class="w-100 d-flex justify-content-end">
3d527ba1 31 <p-chart *ngIf="videoChannelsChartData && videoChannelsChartData[i]" type="line" [data]="videoChannelsChartData[i]" [options]="chartOptions" width="40vw" height="100px"></p-chart>
8165d00a 32 </div>
08c1efbe 33 </div>
08c1efbe
C
34 </div>
35</div>