@if ($user->ratio < config('other.ratio') || $user->can_download == 0)
{{ __('torrent.no-privileges') }}
@else
{{ __('torrent.ready') }}
@endif
-
{{ __('common.ratio') }} {{ strtolower(__('torrent.greater-than')) }}
{{ config('other.ratio') }} :
-
@if ($user->ratio < config('other.ratio'))
{{ strtoupper(__('torrent.failed')) }}
@else
{{ strtoupper(__('torrent.passed')) }}
@endif
- {{ __('torrent.download-rights-active') }}
-
@if ($user->can_download == 0 && $torrent->user_id != $user->id)
{{ strtoupper(__('torrent.failed')) }}
@else
{{ strtoupper(__('torrent.passed')) }}
@endif
- {{ __('torrent.moderation') }}
-
@if ($torrent->status === \App\Models\Torrent::REJECTED)
{{ strtoupper(__('torrent.rejected')) }}
@elseif ($torrent->status === \App\Models\Torrent::PENDING)
{{ strtoupper(__('torrent.pending')) }}
@elseif ($torrent->status === \App\Models\Torrent::POSTPONED)
{{ strtoupper(__('torrent.postponed')) }}
@else
{{ strtoupper(__('torrent.approved')) }}
@endif
@if ($user->ratio < config('other.ratio') ||
($user->can_download == 0 && $torrent->user_id != $user->id))
{{ __('torrent.no-privileges-desc') }}
@else
{{ __('common.download') }}
@endif