aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-subscriptions/my-account-subscriptions.component.html
blob: 4c68cd1a520e1a777cf81aebeab5c3a775ea4e7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="video-channels">
  <div *ngFor="let videoChannel of videoChannels" class="video-channel">
    <a [routerLink]="[ '/video-channels', videoChannel.name ]">
      <img [src]="videoChannel.avatarUrl" alt="Avatar" />
    </a>

    <div class="video-channel-info">
      <a [routerLink]="[ '/video-channels', videoChannel.name ]" class="video-channel-names" i18n-title title="Go to the channel">
        <div class="video-channel-display-name">{{ videoChannel.displayName }}</div>
        <div class="video-channel-name">{{ videoChannel.name }}</div>
      </a>

      <div i18n class="video-channel-followers">{{ videoChannel.followersCount }} subscribers</div>

      <a [routerLink]="[ '/accounts', videoChannel.ownerBy ]" i18n-title title="Go the owner account page" class="actor-owner">
        <span i18n>Created by {{ videoChannel.ownerBy }}</span>
        <img [src]="videoChannel.ownerAvatarUrl" alt="Owner account avatar" />
      </a>
    </div>

    <my-subscribe-button [videoChannel]="videoChannel"></my-subscribe-button>
  </div>
</div>