@extends('layouts.admin') @section('title', $title ?? 'Binary Black/White List') @section('content')

{{ $title }}

Add New Blacklist

Binaries can be prevented from being added to the index if they match a regex in the blacklist. They can also be included only if they match a regex (whitelist). Click Edit or on the blacklist to enable/disable.

@forelse($binlist as $bin) @empty @endforelse
ID Group Description Type Field Status Regex Last Activity Actions
{{ $bin->id }} {{ str_replace('alt.binaries', 'a.b', $bin->groupname) }} {{ $bin->description }} @if($bin->optype == 1) Black @else White @endif @if($bin->msgcol == 1) Subject @elseif($bin->msgcol == 2) Poster @else MessageID @endif @if($bin->status == 1) Active @else Disabled @endif @if($bin->last_activity) {{ $bin->last_activity }} @else Never @endif
No blacklist entries found
@push('scripts') @endpush @endsection