@extends('layouts.examiner') @section('title', 'Reset Management') @section('content')
Clears the IP lock for a candidate who is currently active in an exam. Optionally adds extra minutes. Candidate must be currently online.
Re-activates a candidate who has already submitted, giving them a fresh time allocation. Works even when the candidate is offline.
Clears the IP lock for every currently active candidate so they can log back in from a different terminal. Optionally adds extra minutes to all of them.
@if($onlineCandidates->isEmpty())No candidates currently online.
@else @endifCompletely removes a candidate's exam record, answers and status so they can re-sit. Clears their IP lock. This cannot be undone.
Fully wipes exam records, answers and status for every candidate currently writing. Use with extreme caution.
@if($onlineCandidates->isEmpty())No candidates currently online.
@else @endif| # | Reg No | Name | Gender | Department | IP | Time Left (min) | Started | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $cand->reg_no }} | {{ $cand->full_name }} | {{ $cand->gender_label }} | {{ optional($cand->department)->name ?? '—' }} | {{ $cand->ip ?? '—' }} |
{{ $exam->remaining_time ?? '—' }} | {{ $exam->started_at ? $exam->started_at->format('H:i') : '—' }} |
{{-- Quick reset-time prefill --}}
{{-- Quick full reset --}}
|
| No candidates currently online. | ||||||||