diff --git a/src/app/(admin)/admin/rounds/[roundId]/page.tsx b/src/app/(admin)/admin/rounds/[roundId]/page.tsx index cc93b11..f107dac 100644 --- a/src/app/(admin)/admin/rounds/[roundId]/page.tsx +++ b/src/app/(admin)/admin/rounds/[roundId]/page.tsx @@ -115,6 +115,7 @@ import { AIRecommendationsDisplay } from '@/components/admin/round/ai-recommenda import { EvaluationCriteriaEditor } from '@/components/admin/round/evaluation-criteria-editor' import { COIReviewSection } from '@/components/admin/assignment/coi-review-section' import { ConfigSectionHeader } from '@/components/admin/rounds/config/config-section-header' +import { AdvancementSummaryCard } from '@/components/admin/round/advancement-summary-card' // ── Helpers ──────────────────────────────────────────────────────────────── @@ -942,6 +943,13 @@ export default function RoundDetailPage() { + {/* Advancement Votes Summary — only for EVALUATION rounds */} + {isEvaluation && ( + + + + )} + {/* Filtering Results Summary — only for FILTERING rounds with results */} {isFiltering && filteringStats && filteringStats.total > 0 && ( diff --git a/src/components/admin/assignment/individual-assignments-table.tsx b/src/components/admin/assignment/individual-assignments-table.tsx index 2c15cc5..bf05009 100644 --- a/src/components/admin/assignment/individual-assignments-table.tsx +++ b/src/components/admin/assignment/individual-assignments-table.tsx @@ -312,17 +312,18 @@ export function IndividualAssignmentsTable({

) : (
-
+
Juror Project Status + Advance Actions
{assignments.map((a: any, idx: number) => (
@@ -349,6 +350,20 @@ export function IndividualAssignmentsTable({ )}
+
+ {(() => { + const ev = a.evaluation + if (!ev || ev.status !== 'SUBMITTED') return + const criteria = (ev.form?.criteriaJson ?? []) as Array<{ id: string; type?: string }> + const scores = (ev.criterionScoresJson ?? {}) as Record + const advCrit = criteria.find((c: any) => c.type === 'advance') + if (!advCrit) return + const val = scores[advCrit.id] + if (val === true) return YES + if (val === false) return NO + return + })()} +