<%= turbo_frame_tag workflow do %>
<%= turbo_frame_tag dom_id(workflow, :header) do %> <%= link_to edit_workflow_path(workflow), class: "btn btn--small" do %> <%= image_tag "pencil.svg", aria: { hidden: true }, size: 24 %> Edit <%= workflow.name %> <% end %>

<%= workflow.name %>

<%= button_to workflow_path(workflow), method: :delete, class: "btn btn--negative btn--small", data: { turbo_frame: :workflows, turbo_confirm: "Are you sure you want to delete this workflow?" } do %> <%= image_tag "minus.svg", aria: { hidden: true }, size: 24 %> Delete <%= workflow.name %> <% end %> <% end %>
<%= turbo_frame_tag dom_id(workflow, :stages) do %> <%= render partial: "workflows/stages/stage", collection: workflow.stages %> <%= link_to new_workflow_stage_path(workflow), class: "btn btn--positive btn--small" do %> <%= image_tag "add.svg", aria: { hidden: true }, size: 24 %> New stage <% end %> <% end %>
<% end %>