1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 10:49:28 +02:00

Move user registration info in features table

This commit is contained in:
Chocobozzz 2019-02-21 15:00:26 +01:00
parent 9b39106d57
commit c0e04e4641
No known key found for this signature in database
GPG key ID: 583A612D890159BE
4 changed files with 13 additions and 38 deletions

View file

@ -1,6 +1,14 @@
<div class="feature-table">
<table class="table">
<tr *ngFor="let feature of features">
<td class="label">{{ feature.label }}</td>
<td>
<span *ngIf="feature.value === true" class="glyphicon glyphicon-ok"></span>
<span *ngIf="feature.value === false" class="glyphicon glyphicon-remove"></span>
</td>
</tr>
<tr>
<td i18n class="label">Video quota</td>
@ -16,13 +24,5 @@
</ng-container>
</td>
</tr>
<tr *ngFor="let feature of features">
<td class="label">{{ feature.label }}</td>
<td>
<span *ngIf="feature.value === true" class="glyphicon glyphicon-ok"></span>
<span *ngIf="feature.value === false" class="glyphicon glyphicon-remove"></span>
</td>
</tr>
</table>
</div>
</div>