aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/video-miniature.component.html
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-10-10 14:35:55 +0200
committerChocobozzz <me@florianbigard.com>2018-10-10 14:35:55 +0200
commit017c3dcadf71aef4c1a854e4867b77931747f06e (patch)
tree90ffe6edde8b1bd556ed26e9c021316337443a30 /client/src/app/shared/video/video-miniature.component.html
parent1cd3facc3de899ac864e979cd6d6a704b712cce3 (diff)
downloadPeerTube-017c3dcadf71aef4c1a854e4867b77931747f06e.tar.gz
PeerTube-017c3dcadf71aef4c1a854e4867b77931747f06e.tar.zst
PeerTube-017c3dcadf71aef4c1a854e4867b77931747f06e.zip
Add ability to list all local videos on client
Diffstat (limited to 'client/src/app/shared/video/video-miniature.component.html')
-rw-r--r--client/src/app/shared/video/video-miniature.component.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/client/src/app/shared/video/video-miniature.component.html b/client/src/app/shared/video/video-miniature.component.html
index cfc483018..41ba20d00 100644
--- a/client/src/app/shared/video/video-miniature.component.html
+++ b/client/src/app/shared/video/video-miniature.component.html
@@ -8,6 +8,9 @@
8 [routerLink]="[ '/videos/watch', video.uuid ]" [attr.title]="video.name" [ngClass]="{ 'blur-filter': isVideoBlur }" 8 [routerLink]="[ '/videos/watch', video.uuid ]" [attr.title]="video.name" [ngClass]="{ 'blur-filter': isVideoBlur }"
9 > 9 >
10 {{ video.name }} 10 {{ video.name }}
11
12 <span *ngIf="isUnlistedVideo(video)" class="badge badge-warning" i18n>Unlisted</span>
13 <span *ngIf="isPrivateVideo(video)" class="badge badge-danger" i18n>Private</span>
11 </a> 14 </a>
12 15
13 <span i18n class="video-miniature-created-at-views">{{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views</span> 16 <span i18n class="video-miniature-created-at-views">{{ video.publishedAt | myFromNow }} - {{ video.views | myNumberFormatter }} views</span>