Show modal when no measures for a school/year have meet their threshold

This commit is contained in:
Liam Morley 2021-11-10 15:44:21 -05:00
parent edeb3f4e59
commit cf6e80ce6b
18 changed files with 220 additions and 21 deletions

View file

@ -16,6 +16,7 @@ class SqmApplicationController < ActionController::Base
@school = School.find_by_slug school_slug
@schools = School.where(district: @district).sort_by(&:name)
@academic_year = AcademicYear.find_by_range params[:year]
@has_empty_dataset = Measure.none_meet_threshold? school: @school, academic_year: @academic_year
end
def district_slug