]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-video-channels/my-account-video-channels.component.html
Infinite scroll to list our subscriptions
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-video-channels / my-account-video-channels.component.html
CommitLineData
08c1efbe
C
1<div class="video-channels-header">
2 <a class="create-button" routerLink="create">
3 <span class="icon icon-add"></span>
b1d40cff 4 <ng-container i18n>Create another video channel</ng-container>
08c1efbe
C
5 </a>
6</div>
7
8<div class="video-channels">
9 <div *ngFor="let videoChannel of videoChannels" class="video-channel">
8a19bee1 10 <a [routerLink]="[ '/video-channels', videoChannel.name ]">
08c1efbe
C
11 <img [src]="videoChannel.avatarUrl" alt="Avatar" />
12 </a>
13
14 <div class="video-channel-info">
8a19bee1 15 <a [routerLink]="[ '/video-channels', videoChannel.name ]" class="video-channel-names" i18n-title title="Go to the channel">
08c1efbe 16 <div class="video-channel-display-name">{{ videoChannel.displayName }}</div>
8a19bee1 17 <div class="video-channel-name">{{ videoChannel.name }}</div>
08c1efbe
C
18 </a>
19
b1d40cff 20 <div i18n class="video-channel-followers">{{ videoChannel.followersCount }} subscribers</div>
08c1efbe
C
21 </div>
22
23 <div class="video-channel-buttons">
24 <my-delete-button (click)="deleteVideoChannel(videoChannel)"></my-delete-button>
25
8a19bee1 26 <my-edit-button [routerLink]="[ 'update', videoChannel.name ]"></my-edit-button>
08c1efbe
C
27 </div>
28 </div>
29</div>