<% confirmation_message = workflow_switch_confirmation_message(workflow, collection) %>
<%= button_to collection_workflow_path(collection), method: :patch,
aria: { label: workflow == collection.workflow ? "Stop using this workflow" : "Use this workflow" },
data: confirmation_message ? { turbo_confirm: confirmation_message } : {} do %>
<%= hidden_field_tag "collection[workflow_id]", workflow == collection.workflow ? "" : workflow.id %>
<%= workflow.name %>
<% workflow.stages.each do |stage| %>
-
<%= stage.name %>
<% end %>
<% end %>