mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
13 lines
330 B
Text
13 lines
330 B
Text
<div class="d-flex align-items-center mx-5">
|
|
<input
|
|
id="<%= id %>"
|
|
class="m-3 form-check-input"
|
|
type="checkbox"
|
|
name="<%= "#{name}#{index}" %>-checkbox"
|
|
value="<%= item %>"
|
|
<%= selected_items.include?(item) ? "checked" : "" %>
|
|
>
|
|
<label for="<%= id %>" >
|
|
<%= label_text %>
|
|
</label>
|
|
</div>
|