5 lines
284 B
Text
5 lines
284 B
Text
= bootstrap_form_with(model: checklist, data: { controller: "unsaved-changes" }) do |form|
|
|
= form.text_field :name
|
|
= form.rich_text_area :description_html, rows: 12
|
|
= form.collection_check_boxes :check_ids, Check.all.order(:external_number), :id, :display_label
|
|
= form.submit
|