Add features table on signup
[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">Video quota</td>
6
7       <td class="value">
8         <ng-container *ngIf="initialUserVideoQuota !== -1">
9           {{ initialUserVideoQuota | bytes: 0 }}
10
11           <my-help helpType="custom" [customHtml]="quotaHelpIndication"></my-help>
12         </ng-container>
13
14         <ng-container i18n *ngIf="initialUserVideoQuota === -1">
15           Unlimited
16         </ng-container>
17       </td>
18     </tr>
19
20     <tr *ngFor="let feature of features">
21       <td class="label">{{ feature.label }}</td>
22       <td>
23         <span *ngIf="feature.value === true" class="glyphicon glyphicon-ok"></span>
24         <span *ngIf="feature.value === false" class="glyphicon glyphicon-remove"></span>
25       </td>
26     </tr>
27   </table>
28 </div>