diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-01-15 19:25:51 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-01-21 11:59:41 +0100 |
commit | 9b82d49da868536701d80ef1071df0e7cd301b7a (patch) | |
tree | d34997edf0157d390f44d367f6fd795e0d681760 /client/src/app/shared/video | |
parent | c78d3db71baa397971a83b110c0159169646eae4 (diff) | |
download | PeerTube-9b82d49da868536701d80ef1071df0e7cd301b7a.tar.gz PeerTube-9b82d49da868536701d80ef1071df0e7cd301b7a.tar.zst PeerTube-9b82d49da868536701d80ef1071df0e7cd301b7a.zip |
Add action dropdown descriptions
Diffstat (limited to 'client/src/app/shared/video')
-rw-r--r-- | client/src/app/shared/video/video-miniature.component.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/client/src/app/shared/video/video-miniature.component.html b/client/src/app/shared/video/video-miniature.component.html index ce977b3e6..46c49c15b 100644 --- a/client/src/app/shared/video/video-miniature.component.html +++ b/client/src/app/shared/video/video-miniature.component.html | |||
@@ -10,14 +10,7 @@ | |||
10 | tabindex="-1" | 10 | tabindex="-1" |
11 | class="video-miniature-name" | 11 | class="video-miniature-name" |
12 | [routerLink]="[ '/videos/watch', video.uuid ]" [attr.title]="video.name" [ngClass]="{ 'blur-filter': isVideoBlur }" | 12 | [routerLink]="[ '/videos/watch', video.uuid ]" [attr.title]="video.name" [ngClass]="{ 'blur-filter': isVideoBlur }" |
13 | > | 13 | >{{ video.name }}</a> |
14 | <ng-container *ngIf="displayOptions.privacyLabel"> | ||
15 | <span *ngIf="isUnlistedVideo()" class="badge badge-warning" i18n>Unlisted</span> | ||
16 | <span *ngIf="isPrivateVideo()" class="badge badge-danger" i18n>Private</span> | ||
17 | </ng-container> | ||
18 | |||
19 | {{ video.name }} | ||
20 | </a> | ||
21 | 14 | ||
22 | <span class="video-miniature-created-at-views"> | 15 | <span class="video-miniature-created-at-views"> |
23 | <my-date-toggle *ngIf="displayOptions.date" [date]="video.publishedAt"></my-date-toggle> | 16 | <my-date-toggle *ngIf="displayOptions.date" [date]="video.publishedAt"></my-date-toggle> |
@@ -26,6 +19,11 @@ | |||
26 | <ng-container *ngIf="displayOptions.date && displayOptions.views"> • </ng-container> | 19 | <ng-container *ngIf="displayOptions.date && displayOptions.views"> • </ng-container> |
27 | <ng-container i18n *ngIf="displayOptions.views">{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}}</ng-container> | 20 | <ng-container i18n *ngIf="displayOptions.views">{video.views, plural, =1 {1 view} other {{{ video.views | myNumberFormatter }} views}}</ng-container> |
28 | </span> | 21 | </span> |
22 | |||
23 | <ng-container *ngIf="displayOptions.privacyLabel"> | ||
24 | <span *ngIf="isUnlistedVideo()" class="badge badge-warning ml-1" i18n>Unlisted</span> | ||
25 | <span *ngIf="isPrivateVideo()" class="badge badge-danger ml-1" i18n>Private</span> | ||
26 | </ng-container> | ||
29 | </span> | 27 | </span> |
30 | 28 | ||
31 | <a tabindex="-1" *ngIf="displayOptions.by && displayOwnerAccount()" class="video-miniature-account" [routerLink]="[ '/accounts', video.byAccount ]"> | 29 | <a tabindex="-1" *ngIf="displayOptions.by && displayOwnerAccount()" class="video-miniature-account" [routerLink]="[ '/accounts', video.byAccount ]"> |