2024-07-19 02:29:18 +02:00
|
|
|
<%= bootstrap_form_with(model: element, data: { turbo_frame: "_top"}) do |form| %>
|
|
|
|
|
<%= form.hidden_field :report_id %>
|
|
|
|
|
<%= form.collection_select(:checklist_id, Checklist.all, :id, :name) %>
|
|
|
|
|
<%= form.text_field :path %>
|
|
|
|
|
<%= form.text_field :title %>
|
|
|
|
|
<%= form.rich_text_area :description_html %>
|
|
|
|
|
<%= form.submit %>
|
2024-07-16 20:22:59 +02:00
|
|
|
<% end %>
|