a11yist/app/views/checklist_entries/_form.html.erb

6 lines
268 B
Text
Raw Normal View History

2024-07-19 02:29:18 +02:00
<%= bootstrap_form_with(model: checklist_entry, layout: :horizontal) do |form| %>
<%= form.hidden_field :checklist_id %>
<%= form.collection_select :check_id, Check.all.order(:name), :id, :name %>
<%= form.number_field :position %>
<%= form.submit %>
<% end %>