Back to Peertube

Logs.Component

client/src/app/+admin/system/logs/logs.component.html

8.1.5620 B
Original Source

Log type @for (logTypeChoice of logTypeChoices; track logTypeChoice) { {{ logTypeChoice.label }} }

@if (!isAuditLog()) { Start date {{ item.label }} ({{ item.id | ptDate: item.dateFormat }} - now)

Log level⬤ {{ item.label }} @if (!isAuditLog()) { Filter logs by tags } }

@if (loading) { Loading... } @if (logs.length !== 0) { } @if (!loading && logs.length === 0) { No log. } @for (log of logs; track log) { {{ log.level }}[{{ log.localeDate }}] @if (log.by) { By {{ log.by }} -> } @if (log.domain) { {{ log.domain }} -> {{ log.action }} } {{ log.message }}

{{ log.meta }}

}