diff options
Diffstat (limited to 'client/src/app/+admin/moderation')
4 files changed, 9 insertions, 9 deletions
diff --git a/client/src/app/+admin/moderation/instance-blocklist/instance-account-blocklist.component.html b/client/src/app/+admin/moderation/instance-blocklist/instance-account-blocklist.component.html index ffc8a8e39..99b4e267c 100644 --- a/client/src/app/+admin/moderation/instance-blocklist/instance-account-blocklist.component.html +++ b/client/src/app/+admin/moderation/instance-blocklist/instance-account-blocklist.component.html | |||
@@ -18,7 +18,7 @@ | |||
18 | <ng-template pTemplate="header"> | 18 | <ng-template pTemplate="header"> |
19 | <tr> | 19 | <tr> |
20 | <th style="width: 100%;" i18n>Account</th> | 20 | <th style="width: 100%;" i18n>Account</th> |
21 | <th style="width: 190px;" i18n pSortableColumn="createdAt">Muted at <p-sortIcon field="createdAt"></p-sortIcon></th> | 21 | <th style="width: 140px;" i18n pSortableColumn="createdAt">Muted at <p-sortIcon field="createdAt"></p-sortIcon></th> |
22 | <th style="width: 100px;"></th> <!-- column for action buttons --> | 22 | <th style="width: 100px;"></th> <!-- column for action buttons --> |
23 | </tr> | 23 | </tr> |
24 | </ng-template> | 24 | </ng-template> |
@@ -42,7 +42,7 @@ | |||
42 | </a> | 42 | </a> |
43 | </td> | 43 | </td> |
44 | 44 | ||
45 | <td>{{ accountBlock.createdAt }}</td> | 45 | <td>{{ accountBlock.createdAt | date: 'short' }}</td> |
46 | <td class="action-cell"> | 46 | <td class="action-cell"> |
47 | <button class="unblock-button" (click)="unblockAccount(accountBlock)" i18n>Unmute</button> | 47 | <button class="unblock-button" (click)="unblockAccount(accountBlock)" i18n>Unmute</button> |
48 | </td> | 48 | </td> |
diff --git a/client/src/app/+admin/moderation/instance-blocklist/instance-server-blocklist.component.html b/client/src/app/+admin/moderation/instance-blocklist/instance-server-blocklist.component.html index d1098800b..aecdca387 100644 --- a/client/src/app/+admin/moderation/instance-blocklist/instance-server-blocklist.component.html +++ b/client/src/app/+admin/moderation/instance-blocklist/instance-server-blocklist.component.html | |||
@@ -22,7 +22,7 @@ | |||
22 | <ng-template pTemplate="header"> | 22 | <ng-template pTemplate="header"> |
23 | <tr> | 23 | <tr> |
24 | <th style="width: 100%;" i18n>Instance</th> | 24 | <th style="width: 100%;" i18n>Instance</th> |
25 | <th style="width: 190px;" i18n pSortableColumn="createdAt">Muted at <p-sortIcon field="createdAt"></p-sortIcon></th> | 25 | <th style="width: 140px;" i18n pSortableColumn="createdAt">Muted at <p-sortIcon field="createdAt"></p-sortIcon></th> |
26 | <th style="width: 100px;"></th> <!-- column for action buttons --> | 26 | <th style="width: 100px;"></th> <!-- column for action buttons --> |
27 | </tr> | 27 | </tr> |
28 | </ng-template> | 28 | </ng-template> |
@@ -35,7 +35,7 @@ | |||
35 | <span class="glyphicon glyphicon-new-window"></span> | 35 | <span class="glyphicon glyphicon-new-window"></span> |
36 | </a> | 36 | </a> |
37 | </td> | 37 | </td> |
38 | <td>{{ serverBlock.createdAt }}</td> | 38 | <td>{{ serverBlock.createdAt | date: 'short' }}</td> |
39 | <td class="action-cell"> | 39 | <td class="action-cell"> |
40 | <button class="unblock-button" (click)="unblockServer(serverBlock)" i18n>Unmute</button> | 40 | <button class="unblock-button" (click)="unblockServer(serverBlock)" i18n>Unmute</button> |
41 | </td> | 41 | </td> |
diff --git a/client/src/app/+admin/moderation/video-abuse-list/video-abuse-list.component.html b/client/src/app/+admin/moderation/video-abuse-list/video-abuse-list.component.html index b55b18333..cf5cd58f8 100644 --- a/client/src/app/+admin/moderation/video-abuse-list/video-abuse-list.component.html +++ b/client/src/app/+admin/moderation/video-abuse-list/video-abuse-list.component.html | |||
@@ -42,7 +42,7 @@ | |||
42 | <th style="width: 40px;"></th> | 42 | <th style="width: 40px;"></th> |
43 | <th style="width: 20%;" pResizableColumn i18n>Reporter</th> | 43 | <th style="width: 20%;" pResizableColumn i18n>Reporter</th> |
44 | <th i18n>Video</th> | 44 | <th i18n>Video</th> |
45 | <th style="width: 190px;" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> | 45 | <th style="width: 140px;" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> |
46 | <th i18n pSortableColumn="state" style="width: 80px;">State <p-sortIcon field="state"></p-sortIcon></th> | 46 | <th i18n pSortableColumn="state" style="width: 80px;">State <p-sortIcon field="state"></p-sortIcon></th> |
47 | <th style="width: 120px;"></th> | 47 | <th style="width: 120px;"></th> |
48 | </tr> | 48 | </tr> |
@@ -112,7 +112,7 @@ | |||
112 | </div> | 112 | </div> |
113 | </td> | 113 | </td> |
114 | 114 | ||
115 | <td class="c-hand" [pRowToggler]="videoAbuse">{{ videoAbuse.createdAt }}</td> | 115 | <td class="c-hand" [pRowToggler]="videoAbuse">{{ videoAbuse.createdAt | date: 'short' }}</td> |
116 | 116 | ||
117 | <td class="c-hand video-abuse-states" [pRowToggler]="videoAbuse"> | 117 | <td class="c-hand video-abuse-states" [pRowToggler]="videoAbuse"> |
118 | <span *ngIf="isVideoAbuseAccepted(videoAbuse)" [title]="videoAbuse.state.label" class="glyphicon glyphicon-ok"></span> | 118 | <span *ngIf="isVideoAbuseAccepted(videoAbuse)" [title]="videoAbuse.state.label" class="glyphicon glyphicon-ok"></span> |
diff --git a/client/src/app/+admin/moderation/video-blacklist-list/video-blacklist-list.component.html b/client/src/app/+admin/moderation/video-blacklist-list/video-blacklist-list.component.html index 5eabcb37f..f0e83dae9 100644 --- a/client/src/app/+admin/moderation/video-blacklist-list/video-blacklist-list.component.html +++ b/client/src/app/+admin/moderation/video-blacklist-list/video-blacklist-list.component.html | |||
@@ -21,7 +21,7 @@ | |||
21 | <th i18n pSortableColumn="name">Video <p-sortIcon field="name"></p-sortIcon></th> | 21 | <th i18n pSortableColumn="name">Video <p-sortIcon field="name"></p-sortIcon></th> |
22 | <th style="width: 100px;" i18n>Sensitive</th> | 22 | <th style="width: 100px;" i18n>Sensitive</th> |
23 | <th style="width: 120px;" i18n>Unfederated</th> | 23 | <th style="width: 120px;" i18n>Unfederated</th> |
24 | <th style="width: 190px;" i18n pSortableColumn="createdAt">Date <p-sortIcon field="createdAt"></p-sortIcon></th> | 24 | <th style="width: 140px;" i18n pSortableColumn="createdAt">Date <p-sortIcon field="createdAt"></p-sortIcon></th> |
25 | <th style="width: 120px;"></th> | 25 | <th style="width: 120px;"></th> |
26 | </tr> | 26 | </tr> |
27 | </ng-template> | 27 | </ng-template> |
@@ -55,12 +55,12 @@ | |||
55 | <ng-container *ngIf="videoBlacklist.reason"> | 55 | <ng-container *ngIf="videoBlacklist.reason"> |
56 | <td class="c-hand" [pRowToggler]="videoBlacklist">{{ booleanToText(videoBlacklist.video.nsfw) }}</td> | 56 | <td class="c-hand" [pRowToggler]="videoBlacklist">{{ booleanToText(videoBlacklist.video.nsfw) }}</td> |
57 | <td class="c-hand" [pRowToggler]="videoBlacklist">{{ booleanToText(videoBlacklist.unfederated) }}</td> | 57 | <td class="c-hand" [pRowToggler]="videoBlacklist">{{ booleanToText(videoBlacklist.unfederated) }}</td> |
58 | <td class="c-hand" [pRowToggler]="videoBlacklist">{{ videoBlacklist.createdAt }}</td> | 58 | <td class="c-hand" [pRowToggler]="videoBlacklist">{{ videoBlacklist.createdAt | date: 'short' }}</td> |
59 | </ng-container> | 59 | </ng-container> |
60 | <ng-container *ngIf="!videoBlacklist.reason"> | 60 | <ng-container *ngIf="!videoBlacklist.reason"> |
61 | <td>{{ booleanToText(videoBlacklist.video.nsfw) }}</td> | 61 | <td>{{ booleanToText(videoBlacklist.video.nsfw) }}</td> |
62 | <td>{{ booleanToText(videoBlacklist.unfederated) }}</td> | 62 | <td>{{ booleanToText(videoBlacklist.unfederated) }}</td> |
63 | <td>{{ videoBlacklist.createdAt }}</td> | 63 | <td>{{ videoBlacklist.createdAt | date: 'short' }}</td> |
64 | </ng-container> | 64 | </ng-container> |
65 | 65 | ||
66 | <td class="action-cell"> | 66 | <td class="action-cell"> |