]>
Commit | Line | Data |
---|---|---|
0626e7af C |
1 | <div *ngIf="account" class="row"> |
2 | <div class="sub-menu"> | |
3 | ||
170726f5 | 4 | <div class="actor"> |
d3e91a5f | 5 | <img [src]="account.avatarUrl" alt="Avatar" /> |
0626e7af | 6 | |
170726f5 | 7 | <div class="actor-info"> |
7de6afdf C |
8 | <div class="actor-names"> |
9 | <div class="actor-display-name">{{ account.displayName }}</div> | |
e379f813 | 10 | <div class="actor-name">{{ account.nameWithHost }} |
ee1d0dfb C |
11 | |
12 | <button ngxClipboard [cbContent]="account.nameWithHostForced" (click)="activateCopiedMessage()" | |
13 | class="btn btn-outline-secondary btn-sm copy-button" | |
14 | > | |
e379f813 NB |
15 | <span class="glyphicon glyphicon-copy"></span> |
16 | </button> | |
ee1d0dfb | 17 | |
e379f813 | 18 | </div> |
79bd2632 | 19 | <span *ngIf="user?.blocked" [ngbTooltip]="user.blockedReason" class="badge badge-danger" i18n>Banned</span> |
65b21c96 | 20 | <span *ngIf="account.mutedByUser" class="badge badge-danger" i18n>Muted</span> |
075942b2 C |
21 | <span *ngIf="account.mutedServerByUser" class="badge badge-danger" i18n>Instance muted</span> |
22 | <span *ngIf="account.mutedByInstance" class="badge badge-danger" i18n>Muted by your instance</span> | |
65b21c96 | 23 | <span *ngIf="account.mutedServerByInstance" class="badge badge-danger" i18n>Instance muted by your instance</span> |
79bd2632 | 24 | |
af5767ff | 25 | <my-user-moderation-dropdown |
223b24e6 | 26 | buttonSize="small" [account]="account" [user]="user" placement="bottom-right auto" |
af5767ff C |
27 | (userChanged)="onUserChanged()" (userDeleted)="onUserDeleted()" |
28 | > | |
79bd2632 | 29 | </my-user-moderation-dropdown> |
7de6afdf | 30 | </div> |
41eb700f RK |
31 | <div class="actor-followers"> |
32 | {{ account.followersCount }} | |
33 | <ng-container *ngIf="account.followersCount === 1; then single; else multiple"></ng-container> | |
34 | <ng-template i18n #single>subscriber</ng-template> | |
35 | <ng-template i18n #multiple>subscribers</ng-template> | |
36 | </div> | |
0626e7af | 37 | </div> |
41eb700f RK |
38 | |
39 | <my-subscribe-button *ngIf="videoChannels" [account]="account" [videoChannels]="videoChannels"></my-subscribe-button> | |
0626e7af C |
40 | </div> |
41 | ||
42 | <div class="links"> | |
b1d40cff | 43 | <a i18n routerLink="video-channels" routerLinkActive="active" class="title-page">Video channels</a> |
d3e91a5f | 44 | |
c8487f3f C |
45 | <a i18n routerLink="videos" routerLinkActive="active" class="title-page">Videos</a> |
46 | ||
b1d40cff | 47 | <a i18n routerLink="about" routerLinkActive="active" class="title-page">About</a> |
0626e7af C |
48 | </div> |
49 | </div> | |
50 | ||
51 | <div class="margin-content"> | |
52 | <router-outlet></router-outlet> | |
53 | </div> | |
54 | </div> |