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.
18 lines
610 B
18 lines
610 B
<div class="d-flex align-items-center mx-5">
|
|
<input
|
|
id="<%= id %>"
|
|
class="m-3 <%= name %>-checkbox form-check-input"
|
|
type="checkbox"
|
|
name="<%= name %>-checkbox"
|
|
value="<%= base_url %>"
|
|
data-action="click->analyze#refresh"
|
|
<%= selected_items.include?(item) ? "checked" : "" %>
|
|
<%= @presenter.graph.slug == 'students-and-teachers' || @presenter.source.slug == 'all-data' ? "disabled" : "" %>
|
|
<%= @presenter.group.slug == name ? "" : "hidden" %>>
|
|
|
|
<label for="<%= id %>"
|
|
<%= @presenter.group.slug == name ? "" : "hidden" %>>
|
|
<%= label_text %>
|
|
</label>
|
|
</div>
|