]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/instance/instance-features-table.component.html
Add more attributes to about page
[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">
c8000975
C
4 <tr>
5 <td i18n class="label">Default NSFW/sensitive videos policy (can be redefined by the users)</td>
6
7 <td class="value">{{ buildNSFWLabel() }}</td>
8 </tr>
9
c0e04e46
C
10 <tr *ngFor="let feature of features">
11 <td class="label">{{ feature.label }}</td>
12 <td>
13 <span *ngIf="feature.value === true" class="glyphicon glyphicon-ok"></span>
14 <span *ngIf="feature.value === false" class="glyphicon glyphicon-remove"></span>
15 </td>
16 </tr>
17
41a676db
C
18 <tr>
19 <td i18n class="label">Video quota</td>
20
21 <td class="value">
22 <ng-container *ngIf="initialUserVideoQuota !== -1">
61318dd6 23 {{ initialUserVideoQuota | bytes: 0 }} <ng-container *ngIf="dailyUserVideoQuota !== -1">({{ dailyUserVideoQuota | bytes: 0 }} per day)</ng-container>
41a676db 24
34dd7cb4 25 <my-help tooltipPlacement="auto" helpType="custom" [customHtml]="quotaHelpIndication"></my-help>
41a676db
C
26 </ng-container>
27
28 <ng-container i18n *ngIf="initialUserVideoQuota === -1">
61318dd6 29 Unlimited <ng-container *ngIf="dailyUserVideoQuota !== -1">({{ dailyUserVideoQuota | bytes: 0 }} per day)</ng-container>
41a676db
C
30 </ng-container>
31 </td>
32 </tr>
41a676db 33 </table>
c0e04e46 34</div>