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