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.
40 lines
1.4 KiB
40 lines
1.4 KiB
<a href="/districts/<%= @district.slug %>/schools/<%= @school.slug %>/browse/teachers-and-leadership?year=2020-21">Browse</a>
|
|
|
|
<h1><%= @school.name %></h1>
|
|
|
|
<div class="fdr fjb fac">
|
|
<h2 class="h1">Areas Of Interest</h2>
|
|
<div class="fdr">
|
|
<select class="ml-3 custom-select-lg" name="academic-year">
|
|
<option value="<%= @academic_year %>" selected><%= format_academic_year(@academic_year) %></option>
|
|
</select>
|
|
|
|
<select id="select-district" class="ml-3 custom-select-lg" name="district">
|
|
<% @districts.each do |district| %>
|
|
<option class="district-options" value="<%= district.slug %>" <%= @district.slug == district.slug ? "selected" : nil %>>
|
|
<%= district.name %>
|
|
</option>
|
|
<% end %>
|
|
</select>
|
|
|
|
<select id="select-school" class="ml-3 custom-select-lg" name="school">
|
|
<% @schools.each do |school| %>
|
|
<option class="school-options" value="<%= school.slug %>" <%= @school.slug == school.slug ? "selected" : nil %> >
|
|
<%= school.name %>
|
|
</option>
|
|
<% end %>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="bg-beige mt-4 p-5">
|
|
|
|
<div>
|
|
<h2 class="h1 color-red">Distance from benchmark</h2>
|
|
<p class="body-large">This graph shows how much a score is above or below the benchmark of any given scale.</p>
|
|
</div>
|
|
|
|
<%= render partial: "measure_bar_graph", locals: { measure_graph_row_presenters: @measure_graph_row_presenters } %>
|
|
|
|
</div>
|