aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/instance/instance-features-table.component.html
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2018-09-02 21:35:52 +0200
committerChocobozzz <me@florianbigard.com>2018-09-03 08:49:29 +0200
commit61318dd63fc652383cbe043851ade195f061b5f2 (patch)
treed07918442445f9a471c34df10ccdd19fe07a2a2d /client/src/app/shared/instance/instance-features-table.component.html
parent20d211990425af8d9bb5c8eba204d2b485bcd19a (diff)
downloadPeerTube-61318dd63fc652383cbe043851ade195f061b5f2.tar.gz
PeerTube-61318dd63fc652383cbe043851ade195f061b5f2.tar.zst
PeerTube-61318dd63fc652383cbe043851ade195f061b5f2.zip
add daily quota to the features table information
Diffstat (limited to 'client/src/app/shared/instance/instance-features-table.component.html')
-rw-r--r--client/src/app/shared/instance/instance-features-table.component.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/shared/instance/instance-features-table.component.html b/client/src/app/shared/instance/instance-features-table.component.html
index ba170f074..dc8db8cc1 100644
--- a/client/src/app/shared/instance/instance-features-table.component.html
+++ b/client/src/app/shared/instance/instance-features-table.component.html
@@ -6,13 +6,13 @@
6 6
7 <td class="value"> 7 <td class="value">
8 <ng-container *ngIf="initialUserVideoQuota !== -1"> 8 <ng-container *ngIf="initialUserVideoQuota !== -1">
9 {{ initialUserVideoQuota | bytes: 0 }} 9 {{ initialUserVideoQuota | bytes: 0 }} <ng-container *ngIf="dailyUserVideoQuota !== -1">({{ dailyUserVideoQuota | bytes: 0 }} per day)</ng-container>
10 10
11 <my-help helpType="custom" [customHtml]="quotaHelpIndication"></my-help> 11 <my-help helpType="custom" [customHtml]="quotaHelpIndication"></my-help>
12 </ng-container> 12 </ng-container>
13 13
14 <ng-container i18n *ngIf="initialUserVideoQuota === -1"> 14 <ng-container i18n *ngIf="initialUserVideoQuota === -1">
15 Unlimited 15 Unlimited <ng-container *ngIf="dailyUserVideoQuota !== -1">({{ dailyUserVideoQuota | bytes: 0 }} per day)</ng-container>
16 </ng-container> 16 </ng-container>
17 </td> 17 </td>
18 </tr> 18 </tr>