Skip to content

Instantly share code, notes, and snippets.

@maier-stefan
Created March 6, 2015 12:25
Show Gist options
  • Save maier-stefan/22d74effae68eb523532 to your computer and use it in GitHub Desktop.
Save maier-stefan/22d74effae68eb523532 to your computer and use it in GitHub Desktop.
checkbox collection
<%= f.collection_check_boxes(:ip_range_ids, @ip_ranges, :id, :isp) do |b| %>
<div class="row">
<%= b.label(class: "check_box") do %>
<div class="col-xs-4">
<%= b.check_box(class: "check_box") %>
</div>
<div class="col-xs-8">
<%= b.object.isp %>
</div>
<% end %>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment