@extends('layouts.admin') @section('title', $title ?? 'Group List') @section('content')
Below is a list of all usenet groups available to be indexed. Click 'Activate' to start indexing a group. Backfill works independently of active.
@if(isset($msg) && $msg != '')
{{ $msg }}
@endif @if($grouplist && $grouplist->count() > 0)
{{ $grouplist->onEachSide(5)->links() }}
@foreach($grouplist as $group) @endforeach
Group First Post Last Post Last Updated Status Backfill Releases Min Files Min Size Backfill Days Actions
{{ str_replace('alt.binaries', 'a.b', $group->name) }} @if($group->description)
{{ $group->description }}
@endif
{{ $group->first_record_postdate }} {{ \Carbon\Carbon::parse($group->first_record_postdate)->diffForHumans() }}
{{ $group->last_record_postdate }} {{ \Carbon\Carbon::parse($group->last_updated)->diffForHumans() }} @if($group->active == 1) @else @endif @if($group->backfill == 1) @else @endif {{ $group->num_releases ?? 0 }} @if(empty($group->minfilestoformrelease)) n/a @else {{ $group->minfilestoformrelease }} @endif @if(empty($group->minsizetoformrelease)) n/a @else {{ human_filesize($group->minsizetoformrelease) }} @endif {{ $group->backfill_target }}
@else
No groups available (eg. none have been added).
@endif
@if($grouplist && $grouplist->count() > 0) @endif
@endsection