diff options
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.html | 28 |
1 files changed, 28 insertions, 0 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 new file mode 100644 index 000000000..ba170f074 --- /dev/null +++ b/client/src/app/shared/instance/instance-features-table.component.html | |||
@@ -0,0 +1,28 @@ | |||
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> \ No newline at end of file | ||