@extends('layout.default') @section('title') Moderation - {{ __('staff.staff-dashboard') }} - {{ config('other.title') }} @endsection @section('breadcrumbs') @endsection @section('page', 'page__moderation') @section('main')

{{ __('common.pending-torrents') }}

@forelse ($pending as $torrent) @empty @endforelse
{{ __('torrent.uploaded') }} {{ __('common.name') }} {{ __('common.category') }} {{ __('common.type') }} {{ __('common.resolution') }} {{ __('torrent.size') }} {{ __('torrent.uploader') }} {{ __('common.action') }}
{{ $torrent->name }} {{ $torrent->type->name }} {{ $torrent->resolution->name ?? 'No Res' }} {{ $torrent->getSize() }}
  • @csrf
  • @include('Staff.moderation.partials._postpone_dialog', ['torrent' => $torrent]) @include('Staff.moderation.partials._reject_dialog', ['torrent' => $torrent])
    No pending torrents

    {{ __('torrent.postponed-torrents') }}

    @forelse ($postponed as $torrent) @empty @endforelse
    {{ __('staff.moderation-since') }} {{ __('common.name') }} {{ __('common.category') }} {{ __('common.type') }} {{ __('common.resolution') }} {{ __('torrent.size') }} {{ __('torrent.uploader') }} {{ __('common.staff') }} {{ __('common.action') }}
    {{ $torrent->name }} {{ $torrent->type->name }} {{ $torrent->resolution->name ?? 'No Res' }} {{ $torrent->getSize() }}
  • @csrf
  • {{ __('common.edit') }}
  • @include('Staff.moderation.partials._delete_dialog', ['torrent' => $torrent])
    No postponed torrents

    {{ __('torrent.rejected') }}

    @forelse ($rejected as $torrent) @empty @endforelse
    {{ __('staff.moderation-since') }} {{ __('common.name') }} {{ __('common.category') }} {{ __('common.type') }} {{ __('common.resolution') }} {{ __('torrent.size') }} {{ __('torrent.uploader') }} {{ __('common.staff') }} {{ __('common.action') }}
    {{ $torrent->name }} {{ $torrent->type->name }} {{ $torrent->resolution->name ?? 'No Res' }} {{ $torrent->getSize() }}
  • @csrf
  • @include('Staff.moderation.partials._postpone_dialog', ['torrent' => $torrent])
  • {{ __('common.edit') }}
  • @include('Staff.moderation.partials._delete_dialog', ['torrent' => $torrent])
    No rejected torrents
    @endsection