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:
parent
9b39106d57
commit
c0e04e4641
4 changed files with 13 additions and 38 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue