Including all schools in England
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 58s

This commit is contained in:
Tudor Sitaru
2026-01-06 16:17:00 +00:00
parent 6fb9b94602
commit 0ea4720ac1
3 changed files with 19 additions and 17 deletions

View File

@@ -78,6 +78,14 @@ async function loadFilters() {
const data = await fetchAPI('/api/filters');
if (!data) return;
// Populate local authority filter
data.local_authorities.forEach(la => {
const option = document.createElement('option');
option.value = la;
option.textContent = la;
elements.localAuthorityFilter.appendChild(option);
});
// Populate school type filter
data.school_types.forEach(type => {
const option = document.createElement('option');