]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+admin/moderation/video-blacklist-list/video-blacklist-list.component.html
Reduce createdAt column size by using short date format
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / moderation / video-blacklist-list / video-blacklist-list.component.html
1 <p-table
2 [value]="blacklist" [lazy]="true" [paginator]="totalRecords > 0" [totalRecords]="totalRecords" [rows]="rowsPerPage" [rowsPerPageOptions]="rowsPerPageOptions"
3 [sortField]="sort.field" [sortOrder]="sort.order" (onLazyLoad)="loadLazy($event)" dataKey="id"
4 [showCurrentPageReport]="true" i18n-currentPageReportTemplate
5 currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} blacklisted videos"
6 >
7 <ng-template pTemplate="caption">
8 <div class="caption">
9 <div class="ml-auto">
10 <input
11 type="text" name="table-filter" id="table-filter" i18n-placeholder placeholder="Filter..."
12 (keyup)="onSearch($event)"
13 >
14 </div>
15 </div>
16 </ng-template>
17
18 <ng-template pTemplate="header">
19 <tr>
20 <th style="width: 40px"></th>
21 <th i18n pSortableColumn="name">Video <p-sortIcon field="name"></p-sortIcon></th>
22 <th style="width: 100px;" i18n>Sensitive</th>
23 <th style="width: 120px;" i18n>Unfederated</th>
24 <th style="width: 140px;" i18n pSortableColumn="createdAt">Date <p-sortIcon field="createdAt"></p-sortIcon></th>
25 <th style="width: 120px;"></th>
26 </tr>
27 </ng-template>
28
29 <ng-template pTemplate="body" let-videoBlacklist let-expanded="expanded">
30 <tr>
31 <td *ngIf="!videoBlacklist.reason"></td>
32 <td *ngIf="videoBlacklist.reason" class="expand-cell c-hand" [pRowToggler]="videoBlacklist" i18n-ngbTooltip ngbTooltip="More information" placement="top-left" container="body">
33 <span class="expander">
34 <i [ngClass]="expanded ? 'glyphicon glyphicon-menu-down' : 'glyphicon glyphicon-menu-right'"></i>
35 </span>
36 </td>
37
38 <td>
39 <a [href]="getVideoUrl(videoBlacklist)" class="video-table-video-link" i18n-title title="Open video in a new tab" target="_blank" rel="noopener noreferrer">
40 <div class="video-table-video">
41 <div class="video-table-video-image">
42 <img [src]="videoBlacklist.video.thumbnailPath">
43 </div>
44 <div class="video-table-video-text">
45 <div>
46 {{ videoBlacklist.video.name }}
47 <span i18n-title title="Video was blacklisted" class="glyphicon glyphicon-ban-circle"></span>
48 </div>
49 <div class="text-muted">by {{ videoBlacklist.video.channel?.displayName }} on {{ videoBlacklist.video.channel?.host }} </div>
50 </div>
51 </div>
52 </a>
53 </td>
54
55 <ng-container *ngIf="videoBlacklist.reason">
56 <td class="c-hand" [pRowToggler]="videoBlacklist">{{ booleanToText(videoBlacklist.video.nsfw) }}</td>
57 <td class="c-hand" [pRowToggler]="videoBlacklist">{{ booleanToText(videoBlacklist.unfederated) }}</td>
58 <td class="c-hand" [pRowToggler]="videoBlacklist">{{ videoBlacklist.createdAt | date: 'short' }}</td>
59 </ng-container>
60 <ng-container *ngIf="!videoBlacklist.reason">
61 <td>{{ booleanToText(videoBlacklist.video.nsfw) }}</td>
62 <td>{{ booleanToText(videoBlacklist.unfederated) }}</td>
63 <td>{{ videoBlacklist.createdAt | date: 'short' }}</td>
64 </ng-container>
65
66 <td class="action-cell">
67 <my-action-dropdown
68 [ngClass]="{ 'show': expanded }" placement="bottom-right" container="body"
69 i18n-label label="Actions" [actions]="videoBlacklistActions" [entry]="videoBlacklist"
70 ></my-action-dropdown>
71 </td>
72 </tr>
73 </ng-template>
74
75 <ng-template pTemplate="rowexpansion" let-videoBlacklist>
76 <tr>
77 <td class="expand-cell" colspan="6">
78 <div class="d-flex moderation-expanded">
79 <span class="col-2 moderation-expanded-label" i18n>Blacklist reason:</span>
80 <span class="col-9 moderation-expanded-text" [innerHTML]="videoBlacklist.reasonHtml"></span>
81 </div>
82 </td>
83 </tr>
84 </ng-template>
85
86 <ng-template pTemplate="emptymessage">
87 <tr>
88 <td colspan="6">
89 <div class="empty-table-message">
90 <ng-container *ngIf="search" i18n>No blacklisted video found matching current filters.</ng-container>
91 <ng-container *ngIf="!search" i18n>No blacklisted video found.</ng-container>
92 </div>
93 </td>
94 </tr>
95 </ng-template>
96 </p-table>
97