@include('components.partials._torrent-icons')
|
@if (auth()->user()->group->is_editor || auth()->user()->group->is_modo || (auth()->id() === $torrent->user_id && ($torrent->status !== \App\Enums\ModerationStatus::APPROVED || now()->isBefore($torrent->created_at->addDay()))))
@endif
|
|
@if (config('torrent.download_check_page') == 1)
@else
@endif
@if (config('torrent.magnet') == 1)
@endif
|
{{ $torrent->getSize() }}
|
$torrent->seeding,
])
@if ($torrent->seeding)
title="{{ __('torrent.currently-seeding') }}"
@endif
>
{{ $torrent->seeders }}
|
$torrent->leeching,
])
@if ($torrent->leeching)
title="{{ __('torrent.currently-leeching') }}"
@endif
>
{{ $torrent->leechers }}
|
$torrent->completed,
])
@if ($torrent->completed)
title="{{ __('torrent.completed') }}"
@endif
>
{{ $torrent->times_completed }}
|
|