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

@if (auth()->user()->group->is_editor || auth()->user()->group->is_modo || (auth()->id() === $torrent->user_id && $canEdit))
  • @if ($canEdit)
  • {{ __('common.edit') }}
  • @endif @if (auth()->user()->group->is_modo || (auth()->id() === $torrent->user_id && Illuminate\Support\Carbon::now()->lt($torrent->created_at->addDay())))
  • {{ __('common.delete') }}: {{ $torrent->name }}

    @csrf @method('DELETE')

  • @endif
  • @endif @if (auth()->user()->group->is_modo || auth()->user()->group->is_internal)
  • Edit Freeleech

    @csrf

  • Edit Double Upload

    @csrf

  • @if (! $torrent->refundable)
    @csrf
    @else
    @csrf
    @endif
  • @if ($torrent->sticky == 0)
    @csrf
    @else
    @csrf
    @endif
  • @csrf
  • @if ($torrent->featured === false)
    @csrf
    @else
    @csrf
    @endif
  • @endif @if (auth()->user()->group->is_torrent_modo) @if ($torrent->status !== \App\Models\Torrent::APPROVED)
  • @csrf
  • @endif @if ($torrent->status !== \App\Models\Torrent::POSTPONED)
  • {{ __('common.moderation-postpone') }}: {{ $torrent->name }}

    @csrf

  • @endif @if ($torrent->status !== \App\Models\Torrent::REJECTED)
  • {{ __('common.moderation-reject') }}: {{ $torrent->name }}

    @csrf

  • @endif
  • @switch($torrent->status) @case(\App\Models\Torrent::APPROVED) Approved By: @break @case(\App\Models\Torrent::POSTPONED) Postponed By: @break @case(\App\Models\Torrent::REJECTED) Rejected By: @break @default Unmoderated @endswitch
  • @endif