Fix follows backend URL
[oweals/peertube.git] / client / src / app / shared / instance / instance-features-table.component.html
1 <div class="feature-table">
2
3   <table class="table">
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
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
18     <tr>
19       <td i18n class="label">Video quota</td>
20
21       <td class="value">
22         <ng-container *ngIf="initialUserVideoQuota !== -1">
23           {{ initialUserVideoQuota | bytes: 0 }} <ng-container *ngIf="dailyUserVideoQuota !== -1">({{ dailyUserVideoQuota | bytes: 0 }} per day)</ng-container>
24
25           <my-help helpType="custom" [customHtml]="quotaHelpIndication"></my-help>
26         </ng-container>
27
28         <ng-container i18n *ngIf="initialUserVideoQuota === -1">
29           Unlimited <ng-container *ngIf="dailyUserVideoQuota !== -1">({{ dailyUserVideoQuota | bytes: 0 }} per day)</ng-container>
30         </ng-container>
31       </td>
32     </tr>
33   </table>
34 </div>