やりたいことは下記と同じ。
Rails collection_check_boxes - wrap each checkbox with <li> - Stack Overflow
slimの場合。
edit.html.slim
= form.collection_check_boxes :item_ids, Item.all, :id, :name do |b|
.hoge
= b.check_box + b.label { b.text }
Go to list of users who liked
More than 5 years have passed since last update.
やりたいことは下記と同じ。
Rails collection_check_boxes - wrap each checkbox with <li> - Stack Overflow
slimの場合。
= form.collection_check_boxes :item_ids, Item.all, :id, :name do |b|
.hoge
= b.check_box + b.label { b.text }
Register as a new user and use Qiita more conveniently
Go to list of users who liked