@include(snippets/header)

APPROVAL QUEUE

Items here are pending approval.

@if(pending.length > 0)

Pending Uploads

@each(pending as post) @endeach
Preview ID Uploader Type Tags Action
{{ post.id }} {{ post.username }} {{ post.mime }} @each(post.tags as tag) {{ tag }} @endeach Approve Deny / Delete
@endif

Reference / Soft Deleted

These items are in the deleted folder but not purged from DB. Approving them will restore them.

@if(trash.length > 0) @each(trash as post) @endeach
Preview ID Uploader Type Tags Action
@if(post.thumbnail) @else [File Missing] @endif {{ post.id }} {{ post.username }} {{ post.mime }} @each(post.tags as tag) {{ tag }} @endeach Restore Purge
@else

Trash is empty.

@endif @if(pending.length === 0 && trash.length === 0)

No pending items.

Go touch grass?

@endif
@if(typeof pages !== 'undefined' && pages > 1)
@endif @include(snippets/footer)