a11yist/app/views/success_criteria/new_from_checklist.html.slim
david 729ed13521
Some checks failed
/ Run tests (push) Failing after 1m19s
/ Run system tests (push) Failing after 1m18s
/ Build, push and deploy image (push) Has been skipped
start of iteration 2
2024-10-31 23:13:18 +01:00

8 lines
No EOL
542 B
Text

= turbo_frame_tag dom_id(@success_criterion.element, :new_success_criterion_frame) do
.border.border-info.p-3
= bootstrap_form_with(url: create_from_checklist_element_success_criteria_path(@success_criterion.element), name: :new_from_checklist) do |form|
= form.collection_select :checklist_id, Checklist.all.order(:name), :id, :name
= form.submit class: "btn btn-warning"
= link_to "Abbrechen", @success_criterion.persisted? ? @success_criterion : @success_criterion.element, class: "btn btn-outline-secondary"