where('id', $torrentId)->first(\App\Models\Torrent::$commentFields); if (!$torrent) { stderr("Error", "Invalid torrent_id: $torrentId"); } stdhead(nexus_trans('claim.title_for_torrent')); $query = \App\Models\Claim::query()->where('torrent_id', $torrentId); $pagerParam = "?torrent_id=$torrentId"; print("
| ".nexus_trans('claim.th_id')." | ".nexus_trans('claim.th_username')." | ".nexus_trans('claim.th_torrent_name')." | ".nexus_trans('claim.th_torrent_size')." | ".nexus_trans('claim.th_torrent_ttl')." | ".nexus_trans('claim.th_claim_at')." | ".nexus_trans('claim.th_last_settle')." | ".nexus_trans('claim.th_seed_time_this_month')." | ".nexus_trans('claim.th_uploaded_this_month')." | ".nexus_trans('claim.th_reached_or_not')." | ".$actionTh."
| " . $row->id . " | " . $row->user->username . " | " . $row->torrent->name . " | " . mksize($row->torrent->size) . " | " . mkprettytime($row->torrent->added->diffInSeconds($now)) . " | " . format_datetime($row->created_at) . " | " . format_datetime($row->last_settle_at) . " | " . mkprettytime($row->snatch->seedtime - $row->seed_time_begin) . " | " . mksize($row->snatch->uploaded - $row->uploaded_begin) . " | " . $reached . " | ".sprintf($actionTd, $row->id)."