aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html')
-rw-r--r--client/src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/client/src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html b/client/src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html
index 18d88c20c..07362b3b9 100644
--- a/client/src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html
+++ b/client/src/app/+admin/follows/video-redundancies-list/video-redundancies-list.component.html
@@ -3,9 +3,9 @@
3 <label for="displayType" i18n>Display</label> 3 <label for="displayType" i18n>Display</label>
4 4
5 <div class="peertube-select-container"> 5 <div class="peertube-select-container">
6 <select id="displayType" name="displayType" [(ngModel)]="displayType" (ngModelChange)="onDisplayTypeChanged()"> 6 <select id="displayType" name="displayType" [(ngModel)]="displayType" (ngModelChange)="onDisplayTypeChanged()" class="form-control">
7 <option value="my-videos">My videos duplicated by remote instances</option> 7 <option value="my-videos" i18n>My videos duplicated by remote instances</option>
8 <option value="remote-videos">Remote videos duplicated by my instance</option> 8 <option value="remote-videos" i18n>Remote videos duplicated by my instance</option>
9 </select> 9 </select>
10 </div> 10 </div>
11 </div> 11 </div>
@@ -22,14 +22,14 @@
22 <th i18n pSortableColumn="name">Video name <p-sortIcon field="name"></p-sortIcon></th> 22 <th i18n pSortableColumn="name">Video name <p-sortIcon field="name"></p-sortIcon></th>
23 <th i18n>Video URL</th> 23 <th i18n>Video URL</th>
24 <th i18n *ngIf="isDisplayingRemoteVideos()">Total size</th> 24 <th i18n *ngIf="isDisplayingRemoteVideos()">Total size</th>
25 <th></th> 25 <th style="width: 80px;"></th>
26 </tr> 26 </tr>
27 </ng-template> 27 </ng-template>
28 28
29 <ng-template pTemplate="body" let-expanded="expanded" let-redundancy> 29 <ng-template pTemplate="body" let-expanded="expanded" let-redundancy>
30 <tr> 30 <tr>
31 31
32 <td class="expand-cell"> 32 <td>
33 <span class="expander" i18n-ngbTooltip ngbTooltip="List redundancies" [pRowToggler]="redundancy"> 33 <span class="expander" i18n-ngbTooltip ngbTooltip="List redundancies" [pRowToggler]="redundancy">
34 <i [ngClass]="expanded ? 'glyphicon glyphicon-menu-down' : 'glyphicon glyphicon-menu-right'"></i> 34 <i [ngClass]="expanded ? 'glyphicon glyphicon-menu-down' : 'glyphicon glyphicon-menu-right'"></i>
35 </span> 35 </span>
@@ -53,7 +53,7 @@
53 53
54 <ng-template pTemplate="rowexpansion" let-redundancy> 54 <ng-template pTemplate="rowexpansion" let-redundancy>
55 <tr *ngIf="redundancy.redundancies.files.length !== 0"> 55 <tr *ngIf="redundancy.redundancies.files.length !== 0">
56 <td [attr.colspan]="getColspan()"> 56 <td class="expand-cell" [attr.colspan]="getColspan()">
57 <div *ngFor="let file of redundancy.redundancies.files" class="expansion-block"> 57 <div *ngFor="let file of redundancy.redundancies.files" class="expansion-block">
58 <my-video-redundancy-information [redundancyElement]="file"></my-video-redundancy-information> 58 <my-video-redundancy-information [redundancyElement]="file"></my-video-redundancy-information>
59 </div> 59 </div>
@@ -61,7 +61,7 @@
61 </tr> 61 </tr>
62 62
63 <tr *ngIf="redundancy.redundancies.streamingPlaylists.length !== 0"> 63 <tr *ngIf="redundancy.redundancies.streamingPlaylists.length !== 0">
64 <td [attr.colspan]="getColspan()"> 64 <td class="expand-cell" [attr.colspan]="getColspan()">
65 <div *ngFor="let playlist of redundancy.redundancies.streamingPlaylists"> 65 <div *ngFor="let playlist of redundancy.redundancies.streamingPlaylists">
66 <my-video-redundancy-information [redundancyElement]="playlist"></my-video-redundancy-information> 66 <my-video-redundancy-information [redundancyElement]="playlist"></my-video-redundancy-information>
67 </div> 67 </div>