diff --git a/nextjs-app/components/SchoolDetailView.tsx b/nextjs-app/components/SchoolDetailView.tsx index e353795..ce0b207 100644 --- a/nextjs-app/components/SchoolDetailView.tsx +++ b/nextjs-app/components/SchoolDetailView.tsx @@ -887,6 +887,15 @@ export function SchoolDetailView({ )} + {/* All-through admissions data covers a single entry point (usually the + Year 7 secondary intake), not reception — say so, or a parent could + read these as the whole-school figures. */} + {isAllThrough && admissions.school_phase && ( +
+ These figures are for {admissions.school_phase.toLowerCase()} entry + {/secondary/i.test(admissions.school_phase) ? ' (Year 7)' : /primary/i.test(admissions.school_phase) ? ' (Reception)' : ''}. +
+ )}