]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/instance/instance-features-table.component.html
Add warning regarding config upgrade in docker.md
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / instance / instance-features-table.component.html
CommitLineData
41a676db
C
1<div class="feature-table">
2
3 <table class="table">
c0e04e46
C
4 <tr *ngFor="let feature of features">
5 <td class="label">{{ feature.label }}</td>
6 <td>
7 <span *ngIf="feature.value === true" class="glyphicon glyphicon-ok"></span>
8 <span *ngIf="feature.value === false" class="glyphicon glyphicon-remove"></span>
9 </td>
10 </tr>
11
41a676db
C
12 <tr>
13 <td i18n class="label">Video quota</td>
14
15 <td class="value">
16 <ng-container *ngIf="initialUserVideoQuota !== -1">
61318dd6 17 {{ initialUserVideoQuota | bytes: 0 }} <ng-container *ngIf="dailyUserVideoQuota !== -1">({{ dailyUserVideoQuota | bytes: 0 }} per day)</ng-container>
41a676db
C
18
19 <my-help helpType="custom" [customHtml]="quotaHelpIndication"></my-help>
20 </ng-container>
21
22 <ng-container i18n *ngIf="initialUserVideoQuota === -1">
61318dd6 23 Unlimited <ng-container *ngIf="dailyUserVideoQuota !== -1">({{ dailyUserVideoQuota | bytes: 0 }} per day)</ng-container>
41a676db
C
24 </ng-container>
25 </td>
26 </tr>
41a676db 27 </table>
c0e04e46 28</div>