aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/instance/instance-features-table.component.html
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-02-21 15:00:26 +0100
committerChocobozzz <me@florianbigard.com>2019-02-21 15:00:26 +0100
commitc0e04e46417c7819f024e45896240d4b7331be86 (patch)
tree2941f566ea65a201314596dbaf2d737b84d76b0e /client/src/app/shared/instance/instance-features-table.component.html
parent9b39106d5757caf221a88e42e05167a6fac479c6 (diff)
downloadPeerTube-c0e04e46417c7819f024e45896240d4b7331be86.tar.gz
PeerTube-c0e04e46417c7819f024e45896240d4b7331be86.tar.zst
PeerTube-c0e04e46417c7819f024e45896240d4b7331be86.zip
Move user registration info in features table
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.html18
1 files changed, 9 insertions, 9 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
index dc8db8cc1..90046f409 100644
--- a/client/src/app/shared/instance/instance-features-table.component.html
+++ b/client/src/app/shared/instance/instance-features-table.component.html
@@ -1,6 +1,14 @@
1<div class="feature-table"> 1<div class="feature-table">
2 2
3 <table class="table"> 3 <table class="table">
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
4 <tr> 12 <tr>
5 <td i18n class="label">Video quota</td> 13 <td i18n class="label">Video quota</td>
6 14
@@ -16,13 +24,5 @@
16 </ng-container> 24 </ng-container>
17 </td> 25 </td>
18 </tr> 26 </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> 27 </table>
28</div> \ No newline at end of file 28</div>