feat: Add 'all school' option to exports page

This commit is contained in:
Nelson Jovel 2024-08-21 14:24:42 -07:00
parent aee0bc9883
commit 2eb42800f6
2 changed files with 7 additions and 2 deletions

View file

@ -20,6 +20,8 @@
<h3 class="sub-header-4 mt-5">Grouped By</h3>
<div class="mt-3">
<input type="radio" id="all" name="school_group" value="all" <%= @schools_grouped_by == "all" ? "checked" : "" %>>
<label for="all">All Schools (No Grouping)</label><br>
<input type="radio" id="by_district" name="school_group" value="district" <%= @schools_grouped_by == "district" ? "checked" : "" %>>
<label for="by_district">District</label><br>
<input type="radio" id="by_school" name="school_group" value="school" <%= @schools_grouped_by == "school" ? "checked" : "" %>>