diff options
author | Chocobozzz <me@florianbigard.com> | 2021-11-17 10:18:57 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-11-17 10:18:57 +0100 |
commit | 4bdff96d77c03e5cce6052188f69a65bf6ea5781 (patch) | |
tree | e770779f5e69ea9dfbaa7dcc1837e0af8afcbd53 /client | |
parent | 60d893cf8248d6935164115b33ce3eae8d211e06 (diff) | |
download | PeerTube-4bdff96d77c03e5cce6052188f69a65bf6ea5781.tar.gz PeerTube-4bdff96d77c03e5cce6052188f69a65bf6ea5781.tar.zst PeerTube-4bdff96d77c03e5cce6052188f69a65bf6ea5781.zip |
Add local/remote badges
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/+admin/overview/videos/video-list.component.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/src/app/+admin/overview/videos/video-list.component.html b/client/src/app/+admin/overview/videos/video-list.component.html index 134f64632..6b0dc3abd 100644 --- a/client/src/app/+admin/overview/videos/video-list.component.html +++ b/client/src/app/+admin/overview/videos/video-list.component.html | |||
@@ -66,6 +66,9 @@ | |||
66 | </td> | 66 | </td> |
67 | 67 | ||
68 | <td> | 68 | <td> |
69 | <span class="badge badge-blue" *ngIf="video.isLocal">Local</span> | ||
70 | <span class="badge badge-purple" *ngIf="!video.isLocal">Remote</span> | ||
71 | |||
69 | <span [ngClass]="getPrivacyBadgeClass(video)" class="badge">{{ video.privacy.label }}</span> | 72 | <span [ngClass]="getPrivacyBadgeClass(video)" class="badge">{{ video.privacy.label }}</span> |
70 | 73 | ||
71 | <span *ngIf="video.nsfw" class="badge badge-red" i18n>NSFW</span> | 74 | <span *ngIf="video.nsfw" class="badge badge-red" i18n>NSFW</span> |