@include(snippets/header)

APPROVAL QUEUE

Items here are pending approval.

@if(pending.length > 0)

Pending Uploads

@each(pending as post)
@if(post.mime.startsWith('video')) @else Preview @endif
ID: {!! post.id !!}
User: {!! post.username !!}
Type: {!! post.mime !!}
@each(post.tags as tag) {!! tag.tag !!} @endeach
@endeach
@endif

Soft Deleted

@if(trash.length > 0 && session.admin) @endif

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)
@if(post.mime.startsWith('video')) @else Preview @endif
ID: {!! post.id !!}
User: {!! post.username !!}
Type: {!! post.mime !!}
@if(post.delete_reason)
Reason: {!! post.delete_reason !!}
@endif
@each(post.tags as tag) {!! tag.tag !!} @endeach
Restore @if(session.admin) Purge @else @endif Rating
@endeach
@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)