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.
53 lines
1.4 KiB
53 lines
1.4 KiB
= render 'layouts/school_header'
|
|
|
|
.row
|
|
.col-12
|
|
%p
|
|
= render 'categories/breadcrumbs', school_category: @school_category
|
|
|
|
.row
|
|
.col-12
|
|
.school_category.p-2
|
|
%h3.title.text-center.pt-3
|
|
= @category.name
|
|
|
|
%p= @category.description
|
|
%p
|
|
- if @school_category.response_count > 0
|
|
%b Total Responses:
|
|
= number_with_delimiter(@school_category.response_count)
|
|
|
|
|
|
|
|
%b Average Response:
|
|
= @school_category.answer_index_average.round(1)
|
|
(out of 5)
|
|
|
|
- if @school_category.response_count > 0 && @school_category.zscore.present?
|
|
|
|
|
|
- if @school_category.zscore.present?
|
|
%b Administrative Data:
|
|
- if @school_category.nonlikert.present?
|
|
= @school_category.nonlikert
|
|
= "(Benchmark: #{@school_category.category.benchmark})"
|
|
|
|
- if @school_category.zscore.present?
|
|
= @school_category.zscore.round(1) + 3
|
|
(out of 5)
|
|
|
|
|
|
.indicator-container.py-3
|
|
= render 'school_categories/indicator', info: @school_category
|
|
|
|
- unless @school.district.name == "Boston" && @category.slug == "effective-leadership"
|
|
- if @child_school_categories.present?
|
|
.row
|
|
= render @child_school_categories
|
|
|
|
- if @questions.present?
|
|
.row
|
|
= render @questions
|
|
|
|
= render "shared/performance_spectrum"
|