You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sqm-dashboards/app/views/schools/show.html.haml

18 lines
503 B

= render 'layouts/school_header'
- if @school_categories.blank?
.row.pt-3.mt-3  
.row.pt-3.mt-3
.col-12.text-center
%h3 Insufficient Responses
%p No data is displayed for this school because of insufficient responses.
- elsif @district.name == "Boston"
.row
= render @school_categories.sort { |a, b| a.category.name <=> b.category.name }
- else
.row
= render @school_categories.sort { |a, b| a.root_index <=> b.root_index }
= render "shared/performance_spectrum"