Merge pull request #1105 from BO41/unused-imports
[oweals/peertube.git] / client / src / app / +my-account / my-account-video-channels / my-account-video-channels.component.html
1 <div class="video-channels-header">
2   <a class="create-button" routerLink="create">
3     <span class="icon icon-add"></span>
4     <ng-container i18n>Create another video channel</ng-container>
5   </a>
6 </div>
7
8 <div class="video-channels">
9   <div *ngFor="let videoChannel of videoChannels" class="video-channel">
10     <a [routerLink]="[ '/video-channels', videoChannel.nameWithHost ]">
11       <img [src]="videoChannel.avatarUrl" alt="Avatar" />
12     </a>
13
14     <div class="video-channel-info">
15       <a [routerLink]="[ '/video-channels', videoChannel.nameWithHost ]" class="video-channel-names" i18n-title title="Go to the channel">
16         <div class="video-channel-display-name">{{ videoChannel.displayName }}</div>
17         <div class="video-channel-name">{{ videoChannel.nameWithHost }}</div>
18       </a>
19
20       <div i18n class="video-channel-followers">{{ videoChannel.followersCount }} subscribers</div>
21     </div>
22
23     <div class="video-channel-buttons">
24       <my-delete-button (click)="deleteVideoChannel(videoChannel)"></my-delete-button>
25
26       <my-edit-button [routerLink]="[ 'update', videoChannel.nameWithHost ]"></my-edit-button>
27     </div>
28   </div>
29 </div>