]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-library/+my-video-channels/my-video-channels.component.html
give admins access to edit all channels
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-library / +my-video-channels / my-video-channels.component.html
CommitLineData
d607fc24 1<h1>
cd262619
C
2 <my-global-icon iconName="channel" aria-hidden="true"></my-global-icon>
3 <ng-container i18n>My channels</ng-container>
4 <span class="badge badge-secondary">{{ totalItems }}</span>
d607fc24 5</h1>
4f5d0459 6
7dca45f9
MK
7<my-channels-setup-message [hideLink]="true"></my-channels-setup-message>
8
d607fc24 9<div class="video-channels-header d-flex justify-content-between">
2e46eb97 10 <my-advanced-input-filter (search)="onSearch($event)"></my-advanced-input-filter>
ed5bb517 11
43df00a3 12 <a class="create-button" routerLink="/c/@create">
6ad971d5 13 <my-global-icon iconName="add" aria-hidden="true"></my-global-icon>
8c966daa 14 <ng-container i18n>Create video channel</ng-container>
08c1efbe 15 </a>
d607fc24 16</div>
08c1efbe 17
1de87401
C
18<div class="no-results" i18n *ngIf="totalItems === 0">No channel found.</div>
19
08c1efbe 20<div class="video-channels">
8165d00a 21 <div *ngFor="let videoChannel of videoChannels; let i = index" class="video-channel">
71887396 22 <my-actor-avatar [channel]="videoChannel" [internalHref]="[ '/c', videoChannel.nameWithHost ]"></my-actor-avatar>
08c1efbe
C
23
24 <div class="video-channel-info">
71887396 25 <a [routerLink]="[ '/c', videoChannel.nameWithHost ]" class="video-channel-names" i18n-title title="Channel page">
08c1efbe 26 <div class="video-channel-display-name">{{ videoChannel.displayName }}</div>
f5b0af50 27 <div class="video-channel-name">{{ videoChannel.nameWithHost }}</div>
08c1efbe
C
28 </a>
29
4beda9e1
C
30 <a
31 i18n class="video-channel-followers"
32 [routerLink]="[ '/my-library', 'followers' ]" [queryParams]="{ search: 'channel:' + videoChannel.name }"
33 >
34 {videoChannel.followersCount, plural, =1 {1 subscriber} other {{{ videoChannel.followersCount }} subscribers}}
35 </a>
8165d00a 36
1ba471c5
C
37 <div i18n class="video-channel-videos">{videoChannel.videosCount, plural, =0 {No videos} =1 {1 video} other {{{ videoChannel.videosCount }} videos}}</div>
38
8a3183e5 39 <div class="video-channel-buttons">
43df00a3 40 <my-edit-button label [routerLink]="[ '/c', videoChannel.nameWithHost, 'update' ]"></my-edit-button>
30814423 41 <my-delete-button label (click)="deleteVideoChannel(videoChannel)"></my-delete-button>
8a3183e5
K
42 </div>
43
8165d00a 44 <div *ngIf="!isInSmallView" class="w-100 d-flex justify-content-end">
4f926722 45 <p-chart *ngIf="chartOptions && videoChannelsChartData && videoChannelsChartData[i]" type="line" [data]="videoChannelsChartData[i]" [options]="chartOptions" width="40vw" height="100px"></p-chart>
8165d00a 46 </div>
08c1efbe 47 </div>
08c1efbe
C
48 </div>
49</div>