mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
60 lines
3.0 KiB
HTML
60 lines
3.0 KiB
HTML
@if (loading) {
|
|
<div class="d-flex">
|
|
<div class="spinner-border spinner-border-sm fw-normal" role="status"></div>
|
|
</div>
|
|
} @else {
|
|
<ul class="list-group">
|
|
@if (entries.length === 0) {
|
|
<li class="list-group-item">
|
|
<div class="d-flex justify-content-center">
|
|
<span class="fst-italic" i18n>No entries found.</span>
|
|
</div>
|
|
</li>
|
|
} @else {
|
|
@for (entry of entries; track entry.id) {
|
|
<li class="list-group-item">
|
|
<div class="d-flex justify-content-between align-items-center">
|
|
<ng-template #timestamp>
|
|
<div class="text-light">
|
|
{{ entry.timestamp | customDate:'longDate' }} {{ entry.timestamp | date:'shortTime' }}
|
|
</div>
|
|
</ng-template>
|
|
<span class="text-muted" [ngbTooltip]="timestamp">{{ entry.timestamp | customDate:'relative' }}</span>
|
|
@if (entry.actor) {
|
|
<span class="ms-3 fst-italic">{{ entry.actor.username }}</span>
|
|
} @else {
|
|
<span class="ms-3 fst-italic">System</span>
|
|
}
|
|
<span class="badge bg-secondary ms-auto" [class.bg-primary]="entry.action === AuditLogAction.Create">{{ entry.action | titlecase }}</span>
|
|
</div>
|
|
@if (entry.action === AuditLogAction.Update) {
|
|
<ul class="mt-2">
|
|
@for (change of entry.changes | keyvalue; track change.key) {
|
|
@if (change.value["type"] === 'm2m') {
|
|
<li>
|
|
<span class="fst-italic">{{ change.value["operation"] | titlecase }}</span>
|
|
<span>{{ change.key | titlecase }}</span>:
|
|
<code class="text-primary">{{ change.value["objects"].join(', ') }}</code>
|
|
</li>
|
|
}
|
|
@else if (change.value["type"] === 'custom_field') {
|
|
<li>
|
|
<span>{{ change.value["field"] }}</span>:
|
|
<code class="text-primary">{{ change.value["value"] }}</code>
|
|
</li>
|
|
}
|
|
@else {
|
|
<li>
|
|
<span>{{ change.key | titlecase }}</span>:
|
|
<code class="text-primary">{{ change.value[1] }}</code>
|
|
</li>
|
|
}
|
|
}
|
|
</ul>
|
|
}
|
|
</li>
|
|
}
|
|
}
|
|
</ul>
|
|
}
|